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

Unified Diff: content/browser/appcache/appcache_host.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: content/browser/appcache/appcache_host.h
diff --git a/content/browser/appcache/appcache_host.h b/content/browser/appcache/appcache_host.h
index 933ad483c80e71d474264a25628cac1d44ad9d3a..9f014fbb471311a0b99db4d833467712db5764f9 100644
--- a/content/browser/appcache/appcache_host.h
+++ b/content/browser/appcache/appcache_host.h
@@ -68,7 +68,7 @@ class CONTENT_EXPORT AppCacheHost
AppCacheHost(int host_id, AppCacheFrontend* frontend,
AppCacheServiceImpl* service);
- virtual ~AppCacheHost();
+ ~AppCacheHost() override;
// Adds/removes an observer, the AppCacheHost does not take
// ownership of the observer.
@@ -192,11 +192,10 @@ class CONTENT_EXPORT AppCacheHost
void AssociateCacheHelper(AppCache* cache, const GURL& manifest_url);
// AppCacheStorage::Delegate impl
- virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) override;
- virtual void OnGroupLoaded(AppCacheGroup* group,
- const GURL& manifest_url) override;
+ void OnCacheLoaded(AppCache* cache, int64 cache_id) override;
+ void OnGroupLoaded(AppCacheGroup* group, const GURL& manifest_url) override;
// AppCacheServiceImpl::Observer impl
- virtual void OnServiceReinitialized(
+ void OnServiceReinitialized(
AppCacheStorageReference* old_storage_ref) override;
void FinishCacheSelection(AppCache* cache, AppCacheGroup* group);
@@ -207,7 +206,7 @@ class CONTENT_EXPORT AppCacheHost
void ObserveGroupBeingUpdated(AppCacheGroup* group);
// AppCacheGroup::UpdateObserver methods.
- virtual void OnUpdateComplete(AppCacheGroup* group) override;
+ void OnUpdateComplete(AppCacheGroup* group) override;
// Returns true if this host is for a dedicated worker context.
bool is_for_dedicated_worker() const {
« no previous file with comments | « content/browser/appcache/appcache_group_unittest.cc ('k') | content/browser/appcache/appcache_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698