Index: content/browser/renderer_host/input/web_input_event_builders_android.h |
diff --git a/content/browser/renderer_host/input/web_input_event_builders_android.h b/content/browser/renderer_host/input/web_input_event_builders_android.h |
index 4488375aa5fa11c18c0a6ef467916bfe69a46f5c..10595725335dde2708602228ab89e5180ccb03f0 100644 |
--- a/content/browser/renderer_host/input/web_input_event_builders_android.h |
+++ b/content/browser/renderer_host/input/web_input_event_builders_android.h |
@@ -11,8 +11,8 @@ namespace content { |
class WebMouseEventBuilder { |
public: |
- static WebKit::WebMouseEvent Build(WebKit::WebInputEvent::Type type, |
- WebKit::WebMouseEvent::Button button, |
+ static blink::WebMouseEvent Build(blink::WebInputEvent::Type type, |
+ blink::WebMouseEvent::Button button, |
double time_sec, |
int window_x, |
int window_y, |
@@ -29,7 +29,7 @@ class WebMouseWheelEventBuilder { |
DIRECTION_RIGHT, |
}; |
- static WebKit::WebMouseWheelEvent Build(Direction direction, |
+ static blink::WebMouseWheelEvent Build(Direction direction, |
double time_sec, |
int window_x, |
int window_y); |
@@ -37,7 +37,7 @@ class WebMouseWheelEventBuilder { |
class WebKeyboardEventBuilder { |
public: |
- static WebKit::WebKeyboardEvent Build(WebKit::WebInputEvent::Type type, |
+ static blink::WebKeyboardEvent Build(blink::WebInputEvent::Type type, |
int modifiers, |
double time_sec, |
int keycode, |
@@ -47,7 +47,7 @@ class WebKeyboardEventBuilder { |
class WebGestureEventBuilder { |
public: |
- static WebKit::WebGestureEvent Build(WebKit::WebInputEvent::Type type, |
+ static blink::WebGestureEvent Build(blink::WebInputEvent::Type type, |
double time_sec, |
int x, |
int y); |