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

Unified Diff: components/test_runner/event_sender.h

Issue 2043053002: Added missing pen tilt when creating PointerEvent from ME. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | components/test_runner/event_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/event_sender.h
diff --git a/components/test_runner/event_sender.h b/components/test_runner/event_sender.h
index ec28645bc35a7f4889d26cc7a849580b1ec792f8..c33a302f59cbd8536555dbc5da83eb7920801c57 100644
--- a/components/test_runner/event_sender.h
+++ b/components/test_runner/event_sender.h
@@ -72,11 +72,17 @@ class EventSender {
void PointerDown(int button_number,
int modifiers,
blink::WebPointerProperties::PointerType,
- int pointerId);
+ int pointerId,
+ float pressure,
+ int tiltX,
+ int tiltY);
void PointerUp(int button_number,
int modifiers,
blink::WebPointerProperties::PointerType,
- int pointerId);
+ int pointerId,
+ float pressure,
+ int tiltX,
+ int tiltY);
void SetMouseButtonState(int button_number, int modifiers);
void KeyDown(const std::string& code_str,
« no previous file with comments | « no previous file | components/test_runner/event_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698