Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Unified Diff: third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp

Issue 2475443004: Add use counter when touch-action isn't used when preventDefault'd. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp
diff --git a/third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp b/third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp
index 28676fbdf829ffe5a1549ff4c9655bc8e1ecc49c..8afeeeb94ee3e962853904c024e0e3c19135c742 100644
--- a/third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp
+++ b/third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.cpp
@@ -7,12 +7,13 @@
namespace blink {
AddEventListenerOptionsResolved::AddEventListenerOptionsResolved()
- : m_passiveForcedForDocumentTarget(false) {}
+ : m_passiveForcedForDocumentTarget(false), m_passiveSpecified(false) {}
AddEventListenerOptionsResolved::AddEventListenerOptionsResolved(
const AddEventListenerOptions& options)
: AddEventListenerOptions(options),
- m_passiveForcedForDocumentTarget(false) {}
+ m_passiveForcedForDocumentTarget(false),
+ m_passiveSpecified(false) {}
AddEventListenerOptionsResolved::~AddEventListenerOptionsResolved() {}
« no previous file with comments | « third_party/WebKit/Source/core/events/AddEventListenerOptionsResolved.h ('k') | third_party/WebKit/Source/core/events/Event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698