Index: content/public/browser/native_web_keyboard_event.h |
diff --git a/content/public/browser/native_web_keyboard_event.h b/content/public/browser/native_web_keyboard_event.h |
index 694222241bf2405f573fb0c7e20a0ae4c84e8f7f..1585fbd676264455db5c0df48d80f98d2018ec99 100644 |
--- a/content/public/browser/native_web_keyboard_event.h |
+++ b/content/public/browser/native_web_keyboard_event.h |
@@ -18,7 +18,7 @@ namespace content { |
// Owns a platform specific event; used to pass own and pass event through |
// platform independent code. |
struct CONTENT_EXPORT NativeWebKeyboardEvent : |
- NON_EXPORTED_BASE(public WebKit::WebKeyboardEvent) { |
+ NON_EXPORTED_BASE(public blink::WebKeyboardEvent) { |
NativeWebKeyboardEvent(); |
explicit NativeWebKeyboardEvent(gfx::NativeEvent native_event); |
@@ -37,7 +37,7 @@ struct CONTENT_EXPORT NativeWebKeyboardEvent : |
int state, |
double time_stamp_seconds); |
#elif defined(OS_ANDROID) |
- NativeWebKeyboardEvent(WebKit::WebInputEvent::Type type, |
+ NativeWebKeyboardEvent(blink::WebInputEvent::Type type, |
int modifiers, |
double time_secs, |
int keycode, |
@@ -45,7 +45,7 @@ struct CONTENT_EXPORT NativeWebKeyboardEvent : |
bool is_system_key); |
// Takes ownership of android_key_event. |
NativeWebKeyboardEvent(jobject android_key_event, |
- WebKit::WebInputEvent::Type type, |
+ blink::WebInputEvent::Type type, |
int modifiers, |
double time_secs, |
int keycode, |