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

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

Issue 631773003: Replacing the OVERRIDE with override and FINAL with final in content/browser/appcache (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_storage_impl.h
diff --git a/content/browser/appcache/appcache_storage_impl.h b/content/browser/appcache/appcache_storage_impl.h
index 526bf1b0684a60c0d907367905363534f26cf1db..3c6032db3faa13c019aa4a4f9690001d402942c9 100644
--- a/content/browser/appcache/appcache_storage_impl.h
+++ b/content/browser/appcache/appcache_storage_impl.h
@@ -41,33 +41,33 @@ class AppCacheStorageImpl : public AppCacheStorage {
bool is_disabled() const { return is_disabled_; }
// AppCacheStorage methods, see the base class for doc comments.
- virtual void GetAllInfo(Delegate* delegate) OVERRIDE;
- virtual void LoadCache(int64 id, Delegate* delegate) OVERRIDE;
+ virtual void GetAllInfo(Delegate* delegate) override;
+ virtual void LoadCache(int64 id, Delegate* delegate) override;
virtual void LoadOrCreateGroup(const GURL& manifest_url,
- Delegate* delegate) OVERRIDE;
+ Delegate* delegate) override;
virtual void StoreGroupAndNewestCache(AppCacheGroup* group,
AppCache* newest_cache,
- Delegate* delegate) OVERRIDE;
+ Delegate* delegate) override;
virtual void FindResponseForMainRequest(const GURL& url,
const GURL& preferred_manifest_url,
- Delegate* delegate) OVERRIDE;
+ Delegate* delegate) override;
virtual void FindResponseForSubRequest(
AppCache* cache, const GURL& url,
AppCacheEntry* found_entry, AppCacheEntry* found_fallback_entry,
- bool* found_network_namespace) OVERRIDE;
+ bool* found_network_namespace) override;
virtual void MarkEntryAsForeign(const GURL& entry_url,
- int64 cache_id) OVERRIDE;
+ int64 cache_id) override;
virtual void MakeGroupObsolete(AppCacheGroup* group,
Delegate* delegate,
- int response_code) OVERRIDE;
+ int response_code) override;
virtual AppCacheResponseReader* CreateResponseReader(
- const GURL& manifest_url, int64 group_id, int64 response_id) OVERRIDE;
+ const GURL& manifest_url, int64 group_id, int64 response_id) override;
virtual AppCacheResponseWriter* CreateResponseWriter(
- const GURL& manifest_url, int64 group_id) OVERRIDE;
+ const GURL& manifest_url, int64 group_id) override;
virtual void DoomResponses(const GURL& manifest_url,
- const std::vector<int64>& response_ids) OVERRIDE;
+ const std::vector<int64>& response_ids) override;
virtual void DeleteResponses(const GURL& manifest_url,
- const std::vector<int64>& response_ids) OVERRIDE;
+ const std::vector<int64>& response_ids) override;
private:
// The AppCacheStorageImpl class methods and datamembers may only be
« no previous file with comments | « content/browser/appcache/appcache_service_unittest.cc ('k') | content/browser/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698