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

Unified Diff: webkit/support/test_webplugin_page_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/support/simple_database_system.h ('k') | webkit/tools/test_shell/accessibility_ui_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webplugin_page_delegate.h
diff --git a/webkit/support/test_webplugin_page_delegate.h b/webkit/support/test_webplugin_page_delegate.h
index 94b571eede57de2a21f969178b76daf19d212c1c..abb766700962a80395e2c585c8f75d96bed6ad5f 100644
--- a/webkit/support/test_webplugin_page_delegate.h
+++ b/webkit/support/test_webplugin_page_delegate.h
@@ -19,13 +19,15 @@ class TestWebPluginPageDelegate : public webkit::npapi::WebPluginPageDelegate {
virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate(
const FilePath& file_path,
- const std::string& mime_type);
- virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) {}
- virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) {}
- virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move) {}
- virtual void DidStartLoadingForPlugin() {}
- virtual void DidStopLoadingForPlugin() {}
- virtual WebKit::WebCookieJar* GetCookieJar();
+ const std::string& mime_type) OVERRIDE;
+ virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE {}
+ virtual void WillDestroyPluginWindow(
+ gfx::PluginWindowHandle handle) OVERRIDE {}
+ virtual void DidMovePlugin(
+ const webkit::npapi::WebPluginGeometry& move) OVERRIDE {}
+ virtual void DidStartLoadingForPlugin() OVERRIDE {}
+ virtual void DidStopLoadingForPlugin() OVERRIDE {}
+ virtual WebKit::WebCookieJar* GetCookieJar() OVERRIDE;
};
} // namespace webkit_support
« no previous file with comments | « webkit/support/simple_database_system.h ('k') | webkit/tools/test_shell/accessibility_ui_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698