| Index: webkit/tools/test_shell/test_webview_delegate.h
|
| diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h
|
| index c1277b08f414d35849c6b7461370a2920c1d32ce..afad34c44cfc1316dbcb0ae3af286405c301a771 100644
|
| --- a/webkit/tools/test_shell/test_webview_delegate.h
|
| +++ b/webkit/tools/test_shell/test_webview_delegate.h
|
| @@ -239,16 +239,16 @@ class TestWebViewDelegate : public WebKit::WebViewClient,
|
| // webkit::npapi::WebPluginPageDelegate
|
| virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate(
|
| const FilePath& url,
|
| - const std::string& mime_type);
|
| + const std::string& mime_type) OVERRIDE;
|
| virtual void CreatedPluginWindow(
|
| - gfx::PluginWindowHandle handle);
|
| + gfx::PluginWindowHandle handle) OVERRIDE;
|
| virtual void WillDestroyPluginWindow(
|
| - gfx::PluginWindowHandle handle);
|
| + gfx::PluginWindowHandle handle) OVERRIDE;
|
| virtual void DidMovePlugin(
|
| - const webkit::npapi::WebPluginGeometry& move);
|
| - virtual void DidStartLoadingForPlugin() {}
|
| - virtual void DidStopLoadingForPlugin() {}
|
| - virtual WebKit::WebCookieJar* GetCookieJar();
|
| + const webkit::npapi::WebPluginGeometry& move) OVERRIDE;
|
| + virtual void DidStartLoadingForPlugin() OVERRIDE {}
|
| + virtual void DidStopLoadingForPlugin() OVERRIDE {}
|
| + virtual WebKit::WebCookieJar* GetCookieJar() OVERRIDE;
|
|
|
| TestWebViewDelegate(TestShell* shell);
|
| virtual ~TestWebViewDelegate();
|
|
|