Index: content/browser/net/view_http_cache_job_factory.cc |
diff --git a/content/browser/net/view_http_cache_job_factory.cc b/content/browser/net/view_http_cache_job_factory.cc |
index e5fabf0236977fc726793cd72e11f38133350e2f..57bf2aeaa0273d069fbd3ba3d2175af390122f85 100644 |
--- a/content/browser/net/view_http_cache_job_factory.cc |
+++ b/content/browser/net/view_http_cache_job_factory.cc |
@@ -34,16 +34,16 @@ class ViewHttpCacheJob : public net::URLRequestJob { |
} |
// net::URLRequestJob implementation. |
- virtual void Start() OVERRIDE; |
- virtual void Kill() OVERRIDE; |
- virtual bool GetMimeType(std::string* mime_type) const OVERRIDE{ |
+ virtual void Start() override; |
+ virtual void Kill() override; |
+ virtual bool GetMimeType(std::string* mime_type) const override{ |
return core_->GetMimeType(mime_type); |
} |
- virtual bool GetCharset(std::string* charset) OVERRIDE{ |
+ virtual bool GetCharset(std::string* charset) override{ |
return core_->GetCharset(charset); |
} |
virtual bool ReadRawData(net::IOBuffer* buf, |
- int buf_size, int *bytes_read) OVERRIDE{ |
+ int buf_size, int *bytes_read) override{ |
return core_->ReadRawData(buf, buf_size, bytes_read); |
} |