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

Unified Diff: content/browser/renderer_host/input/web_input_event_builders_win.h

Issue 2016383002: Set PointerType of pointer event on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: 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
« no previous file with comments | « no previous file | content/browser/renderer_host/input/web_input_event_builders_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/input/web_input_event_builders_win.h
diff --git a/content/browser/renderer_host/input/web_input_event_builders_win.h b/content/browser/renderer_host/input/web_input_event_builders_win.h
index 8bef1bdbac4d34d9416acbd971188830ec651db3..189bfd043355ef6cb56bad9129c2b967f37ec50e 100644
--- a/content/browser/renderer_host/input/web_input_event_builders_win.h
+++ b/content/browser/renderer_host/input/web_input_event_builders_win.h
@@ -23,20 +23,24 @@ class CONTENT_EXPORT WebKeyboardEventBuilder {
class CONTENT_EXPORT WebMouseEventBuilder {
public:
- static blink::WebMouseEvent Build(HWND hwnd,
- UINT message,
- WPARAM wparam,
- LPARAM lparam,
- double time_stamp);
+ static blink::WebMouseEvent Build(
+ HWND hwnd,
+ UINT message,
+ WPARAM wparam,
+ LPARAM lparam,
+ double time_stamp,
+ blink::WebPointerProperties::PointerType pointer_type);
};
class CONTENT_EXPORT WebMouseWheelEventBuilder {
public:
- static blink::WebMouseWheelEvent Build(HWND hwnd,
- UINT message,
- WPARAM wparam,
- LPARAM lparam,
- double time_stamp);
+ static blink::WebMouseWheelEvent Build(
+ HWND hwnd,
+ UINT message,
+ WPARAM wparam,
+ LPARAM lparam,
+ double time_stamp,
+ blink::WebPointerProperties::PointerType pointer_type);
};
} // namespace content
« no previous file with comments | « no previous file | content/browser/renderer_host/input/web_input_event_builders_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698