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

Unified Diff: content/browser/appcache/appcache_service_impl.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_service_impl.h
diff --git a/content/browser/appcache/appcache_service_impl.h b/content/browser/appcache/appcache_service_impl.h
index adbf03dd06da07e4ee42e27c65f76dfc05667c65..cb61f3a47d6c21d5cac2c1cbb2e79ad9a3585bc3 100644
--- a/content/browser/appcache/appcache_service_impl.h
+++ b/content/browser/appcache/appcache_service_impl.h
@@ -79,7 +79,7 @@ class CONTENT_EXPORT AppCacheServiceImpl
// If not using quota management, the proxy may be NULL.
explicit AppCacheServiceImpl(storage::QuotaManagerProxy* quota_manager_proxy);
- virtual ~AppCacheServiceImpl();
+ ~AppCacheServiceImpl() override;
void Initialize(
const base::FilePath& cache_directory,
@@ -99,16 +99,14 @@ class CONTENT_EXPORT AppCacheServiceImpl
void ScheduleReinitialize();
// AppCacheService implementation:
- virtual void CanHandleMainResourceOffline(
+ void CanHandleMainResourceOffline(
const GURL& url,
const GURL& first_party,
const net::CompletionCallback& callback) override;
- virtual void GetAllAppCacheInfo(
- AppCacheInfoCollection* collection,
- const net::CompletionCallback& callback) override;
- virtual void DeleteAppCacheGroup(
- const GURL& manifest_url,
- const net::CompletionCallback& callback) override;
+ void GetAllAppCacheInfo(AppCacheInfoCollection* collection,
+ const net::CompletionCallback& callback) override;
+ void DeleteAppCacheGroup(const GURL& manifest_url,
+ const net::CompletionCallback& callback) override;
// Deletes all appcaches for the origin, 'callback' is invoked upon
// completion. This method always completes asynchronously.
« no previous file with comments | « content/browser/appcache/appcache_response_unittest.cc ('k') | content/browser/appcache/appcache_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698