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

Unified Diff: webkit/appcache/appcache_storage_impl.h

Issue 8539047: Add OVERRIDE to webkit/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 1 month 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
« no previous file with comments | « webkit/appcache/appcache_response.h ('k') | webkit/appcache/appcache_update_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_storage_impl.h
diff --git a/webkit/appcache/appcache_storage_impl.h b/webkit/appcache/appcache_storage_impl.h
index 3c12b6da5d5778cbcdf0319044fd185ea0d0c9cc..f54295a8c4797fe7b3fc0096a74b60dba8500281 100644
--- a/webkit/appcache/appcache_storage_impl.h
+++ b/webkit/appcache/appcache_storage_impl.h
@@ -35,28 +35,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);
- virtual void LoadCache(int64 id, Delegate* delegate);
- virtual void LoadOrCreateGroup(const GURL& manifest_url, Delegate* delegate);
- virtual void StoreGroupAndNewestCache(
- AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate);
- virtual void FindResponseForMainRequest(
- const GURL& url, const GURL& preferred_manifest_url, Delegate* delegate);
+ virtual void GetAllInfo(Delegate* delegate) OVERRIDE;
+ virtual void LoadCache(int64 id, Delegate* delegate) OVERRIDE;
+ virtual void LoadOrCreateGroup(const GURL& manifest_url,
+ Delegate* delegate) OVERRIDE;
+ virtual void StoreGroupAndNewestCache(AppCacheGroup* group,
+ AppCache* newest_cache,
+ Delegate* delegate) OVERRIDE;
+ virtual void FindResponseForMainRequest(const GURL& url,
+ const GURL& preferred_manifest_url,
+ Delegate* delegate) OVERRIDE;
virtual void FindResponseForSubRequest(
AppCache* cache, const GURL& url,
AppCacheEntry* found_entry, AppCacheEntry* found_fallback_entry,
- bool* found_network_namespace);
- virtual void MarkEntryAsForeign(const GURL& entry_url, int64 cache_id);
- virtual void MakeGroupObsolete(AppCacheGroup* group, Delegate* delegate);
+ bool* found_network_namespace) OVERRIDE;
+ virtual void MarkEntryAsForeign(const GURL& entry_url,
+ int64 cache_id) OVERRIDE;
+ virtual void MakeGroupObsolete(AppCacheGroup* group,
+ Delegate* delegate) OVERRIDE;
virtual AppCacheResponseReader* CreateResponseReader(
- const GURL& manifest_url, int64 group_id, int64 response_id);
+ const GURL& manifest_url, int64 group_id, int64 response_id) OVERRIDE;
virtual AppCacheResponseWriter* CreateResponseWriter(
- const GURL& manifest_url, int64 group_id);
- virtual void DoomResponses(
- const GURL& manifest_url, const std::vector<int64>& response_ids);
- virtual void DeleteResponses(
- const GURL& manifest_url, const std::vector<int64>& response_ids);
- virtual void PurgeMemory();
+ const GURL& manifest_url, int64 group_id) OVERRIDE;
+ virtual void DoomResponses(const GURL& manifest_url,
+ const std::vector<int64>& response_ids) OVERRIDE;
+ virtual void DeleteResponses(const GURL& manifest_url,
+ const std::vector<int64>& response_ids) OVERRIDE;
+ virtual void PurgeMemory() OVERRIDE;
private:
friend class AppCacheStorageImplTest;
« no previous file with comments | « webkit/appcache/appcache_response.h ('k') | webkit/appcache/appcache_update_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698