Index: content/child/npapi/webplugin_delegate_impl.h |
diff --git a/content/child/npapi/webplugin_delegate_impl.h b/content/child/npapi/webplugin_delegate_impl.h |
index 4a8c88815cc2b3567630332f72e7724e54e570d5..ea262040042fdb0d22a471563026e1db211e66f2 100644 |
--- a/content/child/npapi/webplugin_delegate_impl.h |
+++ b/content/child/npapi/webplugin_delegate_impl.h |
@@ -91,7 +91,7 @@ class WebPluginDelegateImpl : public WebPluginDelegate { |
const gfx::Rect& clip_rect) OVERRIDE; |
virtual void Paint(SkCanvas* canvas, const gfx::Rect& rect) OVERRIDE; |
virtual void SetFocus(bool focused) OVERRIDE; |
- virtual bool HandleInputEvent(const WebKit::WebInputEvent& event, |
+ virtual bool HandleInputEvent(const blink::WebInputEvent& event, |
WebCursor::CursorInfo* cursor_info) OVERRIDE; |
virtual NPObject* GetPluginScriptableObject() OVERRIDE; |
virtual NPP GetPluginNPP() OVERRIDE; |
@@ -280,7 +280,7 @@ class WebPluginDelegateImpl : public WebPluginDelegate { |
// Does platform-specific event handling. Arguments and return are identical |
// to HandleInputEvent. |
- bool PlatformHandleInputEvent(const WebKit::WebInputEvent& event, |
+ bool PlatformHandleInputEvent(const blink::WebInputEvent& event, |
WebCursor::CursorInfo* cursor_info); |
// Closes down and destroys our plugin instance. |
@@ -440,7 +440,7 @@ class WebPluginDelegateImpl : public WebPluginDelegate { |
void OnModalLoopEntered(); |
// Returns true if the message passed in corresponds to a user gesture. |
- static bool IsUserGesture(const WebKit::WebInputEvent& event); |
+ static bool IsUserGesture(const blink::WebInputEvent& event); |
// The url with which the plugin was instantiated. |
std::string plugin_url_; |