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

Unified Diff: content/browser/renderer_host/input/web_input_event_builders_gtk.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_gtk.h
diff --git a/content/browser/renderer_host/input/web_input_event_builders_gtk.h b/content/browser/renderer_host/input/web_input_event_builders_gtk.h
index 6fe16429b35fb511218e10baa5e6ee934a0e4df7..0d0250b1746609c136b31c0a55324ba136f95c1d 100644
--- a/content/browser/renderer_host/input/web_input_event_builders_gtk.h
+++ b/content/browser/renderer_host/input/web_input_event_builders_gtk.h
@@ -19,23 +19,23 @@ namespace content {
class CONTENT_EXPORT WebKeyboardEventBuilder {
public:
- static WebKit::WebKeyboardEvent Build(const GdkEventKey* event);
- static WebKit::WebKeyboardEvent Build(wchar_t character,
+ static blink::WebKeyboardEvent Build(const GdkEventKey* event);
+ static blink::WebKeyboardEvent Build(wchar_t character,
int state,
double time_secs);
};
class CONTENT_EXPORT WebMouseEventBuilder {
public:
- static WebKit::WebMouseEvent Build(const GdkEventButton* event);
- static WebKit::WebMouseEvent Build(const GdkEventMotion* event);
- static WebKit::WebMouseEvent Build(const GdkEventCrossing* event);
+ static blink::WebMouseEvent Build(const GdkEventButton* event);
+ static blink::WebMouseEvent Build(const GdkEventMotion* event);
+ static blink::WebMouseEvent Build(const GdkEventCrossing* event);
};
class CONTENT_EXPORT WebMouseWheelEventBuilder {
public:
static float ScrollbarPixelsPerTick();
- static WebKit::WebMouseWheelEvent Build(
+ static blink::WebMouseWheelEvent Build(
const GdkEventScroll* event);
};

Powered by Google App Engine
This is Rietveld 408576698