Index: chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h |
diff --git a/chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h b/chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h |
index 0b7ac73df42b0b79d3d5a66390343bfdc4d34396..259af14fd007bf468ede4c9597e1e2b50a331322 100644 |
--- a/chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h |
+++ b/chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h |
@@ -28,10 +28,10 @@ class WriteFromUrlOperation : public Operation, public net::URLFetcherDelegate { |
GURL url, |
const std::string& hash, |
const std::string& storage_unit_id); |
- virtual void StartImpl() override; |
+ void StartImpl() override; |
protected: |
- virtual ~WriteFromUrlOperation(); |
+ ~WriteFromUrlOperation() override; |
// Sets the image_path to the correct location to download to. |
void GetDownloadTarget(const base::Closure& continuation); |
@@ -51,13 +51,13 @@ class WriteFromUrlOperation : public Operation, public net::URLFetcherDelegate { |
void DestroyUrlFetcher(); |
// URLFetcherDelegate implementation. |
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override; |
- virtual void OnURLFetchDownloadProgress(const net::URLFetcher* source, |
- int64 current, |
- int64 total) override; |
- virtual void OnURLFetchUploadProgress(const net::URLFetcher* source, |
- int64 current, |
- int64 total) override; |
+ void OnURLFetchComplete(const net::URLFetcher* source) override; |
+ void OnURLFetchDownloadProgress(const net::URLFetcher* source, |
+ int64 current, |
+ int64 total) override; |
+ void OnURLFetchUploadProgress(const net::URLFetcher* source, |
+ int64 current, |
+ int64 total) override; |
void VerifyDownloadCompare(const base::Closure& continuation, |
const std::string& download_hash); |