Index: content/browser/download/save_file_resource_handler.h |
diff --git a/content/browser/download/save_file_resource_handler.h b/content/browser/download/save_file_resource_handler.h |
index beca8dc7216009f385872f12ad46bc0a26e874f4..d115b6fa14e1eb95e16fa5cdb1189b72a5644081 100644 |
--- a/content/browser/download/save_file_resource_handler.h |
+++ b/content/browser/download/save_file_resource_handler.h |
@@ -29,39 +29,39 @@ class SaveFileResourceHandler : public ResourceHandler { |
virtual ~SaveFileResourceHandler(); |
// ResourceHandler Implementation: |
- virtual bool OnUploadProgress(uint64 position, uint64 size) OVERRIDE; |
+ virtual bool OnUploadProgress(uint64 position, uint64 size) override; |
// Saves the redirected URL to final_url_, we need to use the original |
// URL to match original request. |
virtual bool OnRequestRedirected(const net::RedirectInfo& redirect_info, |
ResourceResponse* response, |
- bool* defer) OVERRIDE; |
+ bool* defer) override; |
// Sends the download creation information to the download thread. |
virtual bool OnResponseStarted(ResourceResponse* response, |
- bool* defer) OVERRIDE; |
+ bool* defer) override; |
// Pass-through implementation. |
- virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE; |
+ virtual bool OnWillStart(const GURL& url, bool* defer) override; |
// Pass-through implementation. |
- virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE; |
+ virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) override; |
// Creates a new buffer, which will be handed to the download thread for file |
// writing and deletion. |
virtual bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
int* buf_size, |
- int min_size) OVERRIDE; |
+ int min_size) override; |
// Passes the buffer to the download file writer. |
- virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE; |
+ virtual bool OnReadCompleted(int bytes_read, bool* defer) override; |
virtual void OnResponseCompleted(const net::URLRequestStatus& status, |
const std::string& security_info, |
- bool* defer) OVERRIDE; |
+ bool* defer) override; |
// N/A to this flavor of SaveFileResourceHandler. |
- virtual void OnDataDownloaded(int bytes_downloaded) OVERRIDE; |
+ virtual void OnDataDownloaded(int bytes_downloaded) override; |
// If the content-length header is not present (or contains something other |
// than numbers), StringToInt64 returns 0, which indicates 'unknown size' and |