| 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_;
|
|
|