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

Unified Diff: webkit/appcache/appcache_disk_cache.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 | « no previous file | webkit/appcache/appcache_frontend_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_disk_cache.h
diff --git a/webkit/appcache/appcache_disk_cache.h b/webkit/appcache/appcache_disk_cache.h
index a4aa551a8112c7396cae1a6730fc75225931bd72..f5259c278779f13c305fe004bb1fa89581597d93 100644
--- a/webkit/appcache/appcache_disk_cache.h
+++ b/webkit/appcache/appcache_disk_cache.h
@@ -38,10 +38,11 @@ class APPCACHE_EXPORT AppCacheDiskCache
bool is_disabled() const { return is_disabled_; }
virtual int CreateEntry(int64 key, Entry** entry,
- net::OldCompletionCallback* callback);
+ net::OldCompletionCallback* callback) OVERRIDE;
virtual int OpenEntry(int64 key, Entry** entry,
- net::OldCompletionCallback* callback);
- virtual int DoomEntry(int64 key, net::OldCompletionCallback* callback);
+ net::OldCompletionCallback* callback) OVERRIDE;
+ virtual int DoomEntry(int64 key,
+ net::OldCompletionCallback* callback) OVERRIDE;
private:
class EntryImpl;
« no previous file with comments | « no previous file | webkit/appcache/appcache_frontend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698