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

Unified Diff: chrome/browser/download/download_ui_controller.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/download/download_ui_controller.cc
diff --git a/chrome/browser/download/download_ui_controller.cc b/chrome/browser/download/download_ui_controller.cc
index f584ef7959c3dda7bc31a15e31a9231c64795f9b..992525a3d0da39705fda53f4cf8f4f3cecdc23d7 100644
--- a/chrome/browser/download/download_ui_controller.cc
+++ b/chrome/browser/download/download_ui_controller.cc
@@ -33,7 +33,7 @@ class DefaultUIControllerDelegateAndroid
private:
// DownloadUIController::Delegate
- virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
+ virtual void OnNewDownloadReady(content::DownloadItem* item) override;
};
void DefaultUIControllerDelegateAndroid::OnNewDownloadReady(
@@ -61,7 +61,7 @@ class DefaultUIControllerDelegate : public DownloadUIController::Delegate {
private:
// DownloadUIController::Delegate
- virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
+ virtual void OnNewDownloadReady(content::DownloadItem* item) override;
Profile* profile_;
};
« no previous file with comments | « chrome/browser/download/download_ui_controller.h ('k') | chrome/browser/download/download_ui_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698