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

Unified Diff: content/browser/renderer_host/input/web_input_event_builders_gtk.cc

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.cc
diff --git a/content/browser/renderer_host/input/web_input_event_builders_gtk.cc b/content/browser/renderer_host/input/web_input_event_builders_gtk.cc
index c101595c79fd1d96bd95462c6f39e9b1f1464e84..d5c2bded6e117460189dd036fce03896dbb05001 100644
--- a/content/browser/renderer_host/input/web_input_event_builders_gtk.cc
+++ b/content/browser/renderer_host/input/web_input_event_builders_gtk.cc
@@ -13,10 +13,10 @@
#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "ui/events/keycodes/keyboard_code_conversion_gtk.h"
-using WebKit::WebInputEvent;
-using WebKit::WebMouseEvent;
-using WebKit::WebMouseWheelEvent;
-using WebKit::WebKeyboardEvent;
+using blink::WebInputEvent;
+using blink::WebMouseEvent;
+using blink::WebMouseWheelEvent;
+using blink::WebKeyboardEvent;
namespace {
@@ -53,7 +53,7 @@ void ResetClickCountState() {
last_click_time = 0;
last_click_x = 0;
last_click_y = 0;
- last_click_button = WebKit::WebMouseEvent::ButtonNone;
+ last_click_button = blink::WebMouseEvent::ButtonNone;
}
bool IsKeyPadKeyval(guint keyval) {
@@ -395,7 +395,7 @@ WebKeyboardEvent WebKeyboardEventBuilder::Build(wchar_t character,
// function creates a WebInputEvent::Char event without using a
// GdkEventKey object.
WebKeyboardEvent result;
- result.type = WebKit::WebInputEvent::Char;
+ result.type = blink::WebInputEvent::Char;
result.timeStampSeconds = timeStampSeconds;
result.modifiers = GdkStateToWebEventModifiers(state);
result.windowsKeyCode = character;

Powered by Google App Engine
This is Rietveld 408576698