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

Unified Diff: Source/core/loader/appcache/ApplicationCacheHost.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/core/loader/appcache/ApplicationCache.h ('k') | Source/core/streams/Stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/appcache/ApplicationCacheHost.h
diff --git a/Source/core/loader/appcache/ApplicationCacheHost.h b/Source/core/loader/appcache/ApplicationCacheHost.h
index 95aae19307c8a92aa6ce92a6bbaacfc86d0fb4ef..7fe31e916181f0db20cd2f5e3af95f0f383bb095 100644
--- a/Source/core/loader/appcache/ApplicationCacheHost.h
+++ b/Source/core/loader/appcache/ApplicationCacheHost.h
@@ -137,10 +137,10 @@ namespace blink {
explicit ApplicationCacheHost(DocumentLoader*);
// WebApplicationCacheHostClient implementation
- virtual void didChangeCacheAssociation() override final;
- virtual void notifyEventListener(WebApplicationCacheHost::EventID) override final;
- virtual void notifyProgressEventListener(const WebURL&, int progressTotal, int progressDone) override final;
- virtual void notifyErrorEventListener(WebApplicationCacheHost::ErrorReason, const WebURL&, int status, const WebString& message) override final;
+ void didChangeCacheAssociation() final;
+ void notifyEventListener(WebApplicationCacheHost::EventID) final;
+ void notifyProgressEventListener(const WebURL&, int progressTotal, int progressDone) final;
+ void notifyErrorEventListener(WebApplicationCacheHost::ErrorReason, const WebURL&, int status, const WebString& message) final;
bool isApplicationCacheEnabled();
DocumentLoader* documentLoader() const { return m_documentLoader; }
« no previous file with comments | « Source/core/loader/appcache/ApplicationCache.h ('k') | Source/core/streams/Stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698