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

Unified Diff: content/browser/appcache/chrome_appcache_service.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/chrome_appcache_service.h
diff --git a/content/browser/appcache/chrome_appcache_service.h b/content/browser/appcache/chrome_appcache_service.h
index 6ad89315acd5273f3294c8a586909c7b7044047f..6976d873007ac5c926816b94c75554ea8fdbbb6b 100644
--- a/content/browser/appcache/chrome_appcache_service.h
+++ b/content/browser/appcache/chrome_appcache_service.h
@@ -53,13 +53,13 @@ class CONTENT_EXPORT ChromeAppCacheService
scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy);
// AppCachePolicy overrides
- virtual bool CanLoadAppCache(const GURL& manifest_url,
- const GURL& first_party) override;
- virtual bool CanCreateAppCache(const GURL& manifest_url,
- const GURL& first_party) override;
+ bool CanLoadAppCache(const GURL& manifest_url,
+ const GURL& first_party) override;
+ bool CanCreateAppCache(const GURL& manifest_url,
+ const GURL& first_party) override;
protected:
- virtual ~ChromeAppCacheService();
+ ~ChromeAppCacheService() override;
private:
friend class base::DeleteHelper<ChromeAppCacheService>;

Powered by Google App Engine
This is Rietveld 408576698