Index: content/common/input/synthetic_web_input_event_builders.h |
diff --git a/content/common/input/synthetic_web_input_event_builders.h b/content/common/input/synthetic_web_input_event_builders.h |
index 5df4cd6109aa7809a0d7c8b74135fb30fee5c637..33442519005696f4789e9328c74a9020194a45cf 100644 |
--- a/content/common/input/synthetic_web_input_event_builders.h |
+++ b/content/common/input/synthetic_web_input_event_builders.h |
@@ -41,16 +41,18 @@ class CONTENT_EXPORT SyntheticWebGestureEventBuilder { |
public: |
static blink::WebGestureEvent Build( |
blink::WebInputEvent::Type type, |
- blink::WebGestureEvent::SourceDevice sourceDevice); |
+ blink::WebGestureEvent::SourceDevice source_device); |
static blink::WebGestureEvent BuildScrollBegin(float dx_hint, |
float dy_hint); |
static blink::WebGestureEvent BuildScrollUpdate(float dx, |
float dy, |
int modifiers); |
- static blink::WebGestureEvent BuildPinchUpdate(float scale, |
- float anchor_x, |
- float anchor_y, |
- int modifiers); |
+ static blink::WebGestureEvent BuildPinchUpdate( |
+ float scale, |
+ float anchor_x, |
+ float anchor_y, |
+ int modifiers, |
+ blink::WebGestureEvent::SourceDevice source_device); |
static blink::WebGestureEvent BuildFling( |
float velocity_x, |
float velocity_y, |