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

Unified Diff: Source/web/WebHelperPluginImpl.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months 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 | « Source/web/WebFontImpl.h ('k') | Source/web/WebKit.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebHelperPluginImpl.h
diff --git a/Source/web/WebHelperPluginImpl.h b/Source/web/WebHelperPluginImpl.h
index e2e7e087cdcd63cfeb298f4a235f6022d2349a55..5480d7383a8c9166138f5a55813a88cdd4420f27 100644
--- a/Source/web/WebHelperPluginImpl.h
+++ b/Source/web/WebHelperPluginImpl.h
@@ -53,14 +53,14 @@ class WebHelperPluginImpl final : public WebHelperPlugin {
WTF_MAKE_FAST_ALLOCATED(WebHelperPluginImpl);
public:
// WebHelperPlugin methods:
- virtual WebPlugin* getPlugin() override;
- virtual void destroy() override;
+ WebPlugin* getPlugin() override;
+ void destroy() override;
private:
friend class WebHelperPlugin;
WebHelperPluginImpl();
- virtual ~WebHelperPluginImpl();
+ ~WebHelperPluginImpl() override;
bool initialize(const String& pluginType, WebLocalFrameImpl*);
void reallyDestroy(Timer<WebHelperPluginImpl>*);
« no previous file with comments | « Source/web/WebFontImpl.h ('k') | Source/web/WebKit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698