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

Unified Diff: chrome/browser/download/download_file_picker.h

Issue 665253002: Standardize usage of virtual/override/final in chrome/browser/download/ (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/download/download_file_picker.h
diff --git a/chrome/browser/download/download_file_picker.h b/chrome/browser/download/download_file_picker.h
index 62dc5a059ac767712873af59d56c040b6a493801..bf7754dac3c63cff2508eb4a1104e6377f731706 100644
--- a/chrome/browser/download/download_file_picker.h
+++ b/chrome/browser/download/download_file_picker.h
@@ -41,17 +41,17 @@ class DownloadFilePicker : public ui::SelectFileDialog::Listener {
DownloadFilePicker(content::DownloadItem* item,
const base::FilePath& suggested_path,
const FileSelectedCallback& callback);
- virtual ~DownloadFilePicker();
+ ~DownloadFilePicker() override;
// Runs |file_selected_callback_| with |virtual_path| and then deletes this
// object.
void OnFileSelected(const base::FilePath& virtual_path);
// SelectFileDialog::Listener implementation.
- virtual void FileSelected(const base::FilePath& path,
- int index,
- void* params) override;
- virtual void FileSelectionCanceled(void* params) override;
+ void FileSelected(const base::FilePath& path,
+ int index,
+ void* params) override;
+ void FileSelectionCanceled(void* params) override;
// Initially suggested path.
base::FilePath suggested_path_;
« no previous file with comments | « chrome/browser/download/download_dir_policy_handler_unittest.cc ('k') | chrome/browser/download/download_history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698