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

Unified Diff: chrome/browser/extensions/api/image_writer_private/write_from_url_operation.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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: 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 266832115947036cb387b623376dd0a47449a3ea..0b7ac73df42b0b79d3d5a66390343bfdc4d34396 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,7 +28,7 @@ class WriteFromUrlOperation : public Operation, public net::URLFetcherDelegate {
GURL url,
const std::string& hash,
const std::string& storage_unit_id);
- virtual void StartImpl() OVERRIDE;
+ virtual void StartImpl() override;
protected:
virtual ~WriteFromUrlOperation();
@@ -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 OnURLFetchComplete(const net::URLFetcher* source) override;
virtual void OnURLFetchDownloadProgress(const net::URLFetcher* source,
int64 current,
- int64 total) OVERRIDE;
+ int64 total) override;
virtual void OnURLFetchUploadProgress(const net::URLFetcher* source,
int64 current,
- int64 total) OVERRIDE;
+ int64 total) override;
void VerifyDownloadCompare(const base::Closure& continuation,
const std::string& download_hash);

Powered by Google App Engine
This is Rietveld 408576698