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

Unified Diff: content/browser/renderer_host/input/motion_event_web.cc

Issue 999423003: Set the unique_event_id when converting from TouchEvent to WebTouchEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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: content/browser/renderer_host/input/motion_event_web.cc
diff --git a/content/browser/renderer_host/input/motion_event_web.cc b/content/browser/renderer_host/input/motion_event_web.cc
index 2d276f0371ea23757ad508f23df1cdb496d015ed..e7e67864feddb1eb0a956bd7f507e2c90962f179 100644
--- a/content/browser/renderer_host/input/motion_event_web.cc
+++ b/content/browser/renderer_host/input/motion_event_web.cc
@@ -73,6 +73,10 @@ int MotionEventWeb::GetId() const {
return 0;
}
+uint64 MotionEventWeb::GetUniqueId() const {
+ return 0;
tdresser 2015/04/08 12:24:26 Will this cause problems for devtools touch emulat
lanwei 2015/04/09 04:14:28 Done.
+}
+
MotionEventWeb::Action MotionEventWeb::GetAction() const {
return cached_action_;
}

Powered by Google App Engine
This is Rietveld 408576698