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

Unified Diff: Source/web/SharedWorkerRepositoryClientImpl.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/ServiceWorkerGlobalScopeProxy.h ('k') | Source/web/SharedWorkerRepositoryClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/SharedWorkerRepositoryClientImpl.h
diff --git a/Source/web/SharedWorkerRepositoryClientImpl.h b/Source/web/SharedWorkerRepositoryClientImpl.h
index ad1cea2b8301767e5421837febb5ef3cbb8e5c0a..65a76076b1b3123856d65d4e625f3e2a62317211 100644
--- a/Source/web/SharedWorkerRepositoryClientImpl.h
+++ b/Source/web/SharedWorkerRepositoryClientImpl.h
@@ -48,10 +48,10 @@ public:
return adoptPtr(new SharedWorkerRepositoryClientImpl(client));
}
- virtual ~SharedWorkerRepositoryClientImpl() { }
+ ~SharedWorkerRepositoryClientImpl() override { }
- virtual void connect(PassRefPtrWillBeRawPtr<SharedWorker>, PassOwnPtr<WebMessagePortChannel>, const KURL&, const String& name, ExceptionState&) override;
- virtual void documentDetached(Document*) override;
+ void connect(PassRefPtrWillBeRawPtr<SharedWorker>, PassOwnPtr<WebMessagePortChannel>, const KURL&, const String& name, ExceptionState&) override;
+ void documentDetached(Document*) override;
private:
explicit SharedWorkerRepositoryClientImpl(WebSharedWorkerRepositoryClient*);
« no previous file with comments | « Source/web/ServiceWorkerGlobalScopeProxy.h ('k') | Source/web/SharedWorkerRepositoryClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698