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

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

Issue 1980113002: Add UMA metric for tracking root level listeners for blocking touch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename variables, don't log on uncancelable and targets that don't have appropriate listeners Created 4 years, 7 months 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 3aadfc5cff162360dc751c41aab08c19d7bb9857..3711f59582b81aab4c4455ced17ba699c6f4975d 100644
--- a/third_party/WebKit/Source/core/events/Event.h
+++ b/third_party/WebKit/Source/core/events/Event.h
@@ -118,6 +118,8 @@ public:
EventTarget* currentTarget() const;
void setCurrentTarget(EventTarget* currentTarget) { m_currentTarget = currentTarget; }
+ virtual void doneDispatchingEventAtCurrentTarget();
+
unsigned short eventPhase() const { return m_eventPhase; }
void setEventPhase(unsigned short eventPhase) { m_eventPhase = eventPhase; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/events/Event.cpp » ('j') | third_party/WebKit/Source/core/events/EventTarget.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698