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

Unified Diff: Source/web/NavigatorContentUtilsClientImpl.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/MediaKeysClientImpl.h ('k') | Source/web/NotificationPermissionClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/NavigatorContentUtilsClientImpl.h
diff --git a/Source/web/NavigatorContentUtilsClientImpl.h b/Source/web/NavigatorContentUtilsClientImpl.h
index 4005fdbeb4d1dc34db3985b3953158c8a89fa8b8..e8de7563da342eb1a92ec7ab2534290671096001 100644
--- a/Source/web/NavigatorContentUtilsClientImpl.h
+++ b/Source/web/NavigatorContentUtilsClientImpl.h
@@ -15,11 +15,11 @@ class WebViewImpl;
class NavigatorContentUtilsClientImpl final : public NavigatorContentUtilsClient {
public:
static PassOwnPtr<NavigatorContentUtilsClientImpl> create(WebViewImpl*);
- virtual ~NavigatorContentUtilsClientImpl() { }
+ ~NavigatorContentUtilsClientImpl() override { }
- virtual void registerProtocolHandler(const String& scheme, const KURL&, const String& title) override;
- virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const KURL&) override;
- virtual void unregisterProtocolHandler(const String& scheme, const KURL&) override;
+ void registerProtocolHandler(const String& scheme, const KURL&, const String& title) override;
+ CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const KURL&) override;
+ void unregisterProtocolHandler(const String& scheme, const KURL&) override;
private:
explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
« no previous file with comments | « Source/web/MediaKeysClientImpl.h ('k') | Source/web/NotificationPermissionClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698