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

Unified Diff: components/test_runner/event_sender.cc

Issue 1426643008: Cleaning up PointerIdManager and add id re-mapping (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set mouse pointer type in the event sender Created 5 years 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: components/test_runner/event_sender.cc
diff --git a/components/test_runner/event_sender.cc b/components/test_runner/event_sender.cc
index 2818b072e6708cc4ba23fd88ac432651d969db00..467ba4033f817d23a08d0811ecc86efe85af49f9 100644
--- a/components/test_runner/event_sender.cc
+++ b/components/test_runner/event_sender.cc
@@ -93,6 +93,7 @@ void InitMouseEvent(WebInputEvent::Type t,
e->y = pos.y;
e->globalX = pos.x;
e->globalY = pos.y;
+ e->pointerType = blink::WebPointerProperties::PointerType::Mouse;
mustaq 2015/12/02 15:53:46 Please add a line in CL description about this fix
Navid Zolghadr 2015/12/02 16:49:07 Done.
e->timeStampSeconds = time_stamp;
e->clickCount = click_count;
}

Powered by Google App Engine
This is Rietveld 408576698