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

Unified Diff: content/browser/renderer_host/input/web_input_event_util_posix.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_util_posix.cc
diff --git a/content/browser/renderer_host/input/web_input_event_util_posix.cc b/content/browser/renderer_host/input/web_input_event_util_posix.cc
index 72786c840582b2dc5ad78f5385a9cea0d97429c4..7ae224281f550789eecd79d6a183a8ba18f81335 100644
--- a/content/browser/renderer_host/input/web_input_event_util_posix.cc
+++ b/content/browser/renderer_host/input/web_input_event_util_posix.cc
@@ -22,21 +22,21 @@ ui::KeyboardCode GetWindowsKeyCodeWithoutLocation(ui::KeyboardCode key_code) {
}
}
-WebKit::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
+blink::WebInputEvent::Modifiers GetLocationModifiersFromWindowsKeyCode(
ui::KeyboardCode key_code) {
switch (key_code) {
case ui::VKEY_LCONTROL:
case ui::VKEY_LSHIFT:
case ui::VKEY_LMENU:
case ui::VKEY_LWIN:
- return WebKit::WebKeyboardEvent::IsLeft;
+ return blink::WebKeyboardEvent::IsLeft;
case ui::VKEY_RCONTROL:
case ui::VKEY_RSHIFT:
case ui::VKEY_RMENU:
case ui::VKEY_RWIN:
- return WebKit::WebKeyboardEvent::IsRight;
+ return blink::WebKeyboardEvent::IsRight;
default:
- return static_cast<WebKit::WebInputEvent::Modifiers>(0);
+ return static_cast<blink::WebInputEvent::Modifiers>(0);
}
}

Powered by Google App Engine
This is Rietveld 408576698