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

Unified Diff: net/http/disk_cache_based_ssl_host_info.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only 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 | « net/disk_cache/stats_histogram.h ('k') | net/http/http_auth_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/disk_cache_based_ssl_host_info.h
diff --git a/net/http/disk_cache_based_ssl_host_info.h b/net/http/disk_cache_based_ssl_host_info.h
index 7adce487452728a7a8f47c64dc35689ef6f156f1..a5dc8611847eb6b080e78b64721ac3d4c240598a 100644
--- a/net/http/disk_cache_based_ssl_host_info.h
+++ b/net/http/disk_cache_based_ssl_host_info.h
@@ -33,9 +33,9 @@ class NET_EXPORT_PRIVATE DiskCacheBasedSSLHostInfo
HttpCache* http_cache);
// Implementation of SSLHostInfo
- virtual void Start();
- virtual int WaitForDataReady(OldCompletionCallback* callback);
- virtual void Persist();
+ virtual void Start() OVERRIDE;
+ virtual int WaitForDataReady(OldCompletionCallback* callback) OVERRIDE;
+ virtual void Persist() OVERRIDE;
private:
enum State {
@@ -66,7 +66,7 @@ class NET_EXPORT_PRIVATE DiskCacheBasedSSLHostInfo
disk_cache::Entry* entry() const { return entry_; }
// CallbackRunner<Tuple1<int> >:
- virtual void RunWithParams(const Tuple1<int>& params);
+ virtual void RunWithParams(const Tuple1<int>& params) OVERRIDE;
private:
base::WeakPtr<DiskCacheBasedSSLHostInfo> obj_;
« no previous file with comments | « net/disk_cache/stats_histogram.h ('k') | net/http/http_auth_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698