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

Unified Diff: webkit/tools/test_shell/test_webview_delegate.h

Issue 8539047: Add OVERRIDE to webkit/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 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
« no previous file with comments | « webkit/tools/test_shell/test_shell_webmimeregistry_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « webkit/tools/test_shell/test_shell_webmimeregistry_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698