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

Unified Diff: chrome/browser/download/download_ui_controller_unittest.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_unittest.cc
diff --git a/chrome/browser/download/download_ui_controller_unittest.cc b/chrome/browser/download/download_ui_controller_unittest.cc
index d16ed5f2b8b346746d69a11dffe1d5468969b723..84767173edbbc8f9e7acfbccb3185de12f8533ee 100644
--- a/chrome/browser/download/download_ui_controller_unittest.cc
+++ b/chrome/browser/download/download_ui_controller_unittest.cc
@@ -40,7 +40,7 @@ class TestDelegate : public DownloadUIController::Delegate {
virtual ~TestDelegate() {}
private:
- virtual void OnNewDownloadReady(content::DownloadItem* item) OVERRIDE;
+ virtual void OnNewDownloadReady(content::DownloadItem* item) override;
base::WeakPtr<content::DownloadItem*> receiver_;
};
@@ -63,7 +63,7 @@ class TestDownloadService : public DownloadService {
void set_download_history(scoped_ptr<DownloadHistory> download_history) {
download_history_.swap(download_history);
}
- virtual DownloadHistory* GetDownloadHistory() OVERRIDE;
+ virtual DownloadHistory* GetDownloadHistory() override;
private:
scoped_ptr<DownloadHistory> download_history_;
@@ -87,7 +87,7 @@ class DownloadUIControllerTest : public ChromeRenderViewHostTestHarness {
protected:
// testing::Test
- virtual void SetUp() OVERRIDE;
+ virtual void SetUp() override;
// Returns a TestDelegate. Invoking OnNewDownloadReady on the returned
// delegate results in the DownloadItem* being stored in |notified_item_|.
@@ -128,7 +128,7 @@ class DownloadUIControllerTest : public ChromeRenderViewHostTestHarness {
private:
virtual void QueryDownloads(
- const HistoryService::DownloadQueryCallback& callback) OVERRIDE {
+ const HistoryService::DownloadQueryCallback& callback) override {
download_query_callback_ = callback;
}
};
« no previous file with comments | « chrome/browser/download/download_ui_controller.cc ('k') | chrome/browser/download/save_package_file_picker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698