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

Unified Diff: third_party/WebKit/Source/core/events/Event.h

Issue 2475443004: Add use counter when touch-action isn't used when preventDefault'd. (Closed)
Patch Set: Whoops missed updating a file 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/Event.h
diff --git a/third_party/WebKit/Source/core/events/Event.h b/third_party/WebKit/Source/core/events/Event.h
index bfe0b65fd212991db66c1fd72457d644de71425f..7a60834432c15081f601b12a3cafaf3fa2454921 100644
--- a/third_party/WebKit/Source/core/events/Event.h
+++ b/third_party/WebKit/Source/core/events/Event.h
@@ -84,9 +84,11 @@ class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>,
};
enum class PassiveMode {
+ NotPassiveDefault,
Rick Byers 2016/11/07 17:01:09 nit: add comments making the difference between th
dtapuska 2016/11/07 18:51:40 Done.
NotPassive,
Passive,
PassiveForcedDocumentLevel,
+ PassiveDefault,
};
static Event* create() { return new Event; }

Powered by Google App Engine
This is Rietveld 408576698