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

Unified Diff: chrome/browser/download/download_test_file_activity_observer.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_test_file_activity_observer.cc
diff --git a/chrome/browser/download/download_test_file_activity_observer.cc b/chrome/browser/download/download_test_file_activity_observer.cc
index db68b6fd60906615ff11c3777cc62fdcc3eb4f0a..ce3fa04f8daa8acb1c3090a8966967b476e21909 100644
--- a/chrome/browser/download/download_test_file_activity_observer.cc
+++ b/chrome/browser/download/download_test_file_activity_observer.cc
@@ -52,14 +52,14 @@ class DownloadTestFileActivityObserver::MockDownloadManagerDelegate
virtual void PromptUserForDownloadPath(content::DownloadItem* item,
const base::FilePath& suggested_path,
const FileSelectedCallback&
- callback) OVERRIDE {
+ callback) override {
file_chooser_displayed_ = true;
base::MessageLoop::current()->PostTask(
FROM_HERE, base::Bind(callback, (file_chooser_enabled_ ? suggested_path
: base::FilePath())));
}
- virtual void OpenDownload(content::DownloadItem* item) OVERRIDE {}
+ virtual void OpenDownload(content::DownloadItem* item) override {}
private:
bool file_chooser_enabled_;
« no previous file with comments | « chrome/browser/download/download_target_determiner_unittest.cc ('k') | chrome/browser/download/download_ui_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698