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

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

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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: 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);

Powered by Google App Engine
This is Rietveld 408576698