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

Unified Diff: content/browser/appcache/mock_appcache_storage.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/mock_appcache_storage.h
diff --git a/content/browser/appcache/mock_appcache_storage.h b/content/browser/appcache/mock_appcache_storage.h
index 2c4f45583a2b2f0307021fcbd6ca639ffef3778f..a2c3e4efb37647e5a54f5afdb0e3b71f68f2bce6 100644
--- a/content/browser/appcache/mock_appcache_storage.h
+++ b/content/browser/appcache/mock_appcache_storage.h
@@ -49,35 +49,35 @@ class MockAppCacheStorage : public AppCacheStorage {
explicit MockAppCacheStorage(AppCacheServiceImpl* service);
virtual ~MockAppCacheStorage();
- 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:
friend class AppCacheRequestHandlerTest;
« no previous file with comments | « content/browser/appcache/mock_appcache_service.h ('k') | content/browser/appcache/mock_appcache_storage_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698