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); |
} |
} |