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

Unified Diff: content/browser/appcache/appcache_url_request_job.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_url_request_job.h
diff --git a/content/browser/appcache/appcache_url_request_job.h b/content/browser/appcache/appcache_url_request_job.h
index d4e4b176c2f1f9c5d6dc94a89be7b19c38d38854..e3c087110f05f09fa4be0f83c13761bafc83c1f3 100644
--- a/content/browser/appcache/appcache_url_request_job.h
+++ b/content/browser/appcache/appcache_url_request_job.h
@@ -72,7 +72,7 @@ class CONTENT_EXPORT AppCacheURLRequestJob
// net::URLRequestJob's Kill method is made public so the users of this
// class in the appcache namespace can call it.
- virtual void Kill() OVERRIDE;
+ virtual void Kill() override;
// Returns true if the job has been started by the net library.
bool has_been_started() const {
@@ -121,8 +121,8 @@ class CONTENT_EXPORT AppCacheURLRequestJob
// AppCacheStorage::Delegate methods
virtual void OnResponseInfoLoaded(
- AppCacheResponseInfo* response_info, int64 response_id) OVERRIDE;
- virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) OVERRIDE;
+ AppCacheResponseInfo* response_info, int64 response_id) override;
+ virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) override;
const net::HttpResponseInfo* http_info() const;
bool is_range_request() const { return range_requested_.IsValid(); }
@@ -132,22 +132,22 @@ class CONTENT_EXPORT AppCacheURLRequestJob
void OnReadComplete(int result);
// net::URLRequestJob methods, see url_request_job.h for doc comments
- virtual void Start() OVERRIDE;
- virtual net::LoadState GetLoadState() const OVERRIDE;
- virtual bool GetCharset(std::string* charset) OVERRIDE;
- virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE;
+ virtual void Start() override;
+ virtual net::LoadState GetLoadState() const override;
+ virtual bool GetCharset(std::string* charset) override;
+ virtual void GetResponseInfo(net::HttpResponseInfo* info) override;
virtual bool ReadRawData(net::IOBuffer* buf,
int buf_size,
- int *bytes_read) OVERRIDE;
+ int *bytes_read) override;
// Sets extra request headers for Job types that support request headers.
// This is how we get informed of range-requests.
virtual void SetExtraRequestHeaders(
- const net::HttpRequestHeaders& headers) OVERRIDE;
+ const net::HttpRequestHeaders& headers) override;
// FilterContext methods
- virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
- virtual int GetResponseCode() const OVERRIDE;
+ virtual bool GetMimeType(std::string* mime_type) const override;
+ virtual int GetResponseCode() const override;
AppCacheHost* host_;
AppCacheStorage* storage_;

Powered by Google App Engine
This is Rietveld 408576698