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

Unified Diff: chrome/browser/chrome_select_file_dialog_factory_win.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/chrome_select_file_dialog_factory_win.h
diff --git a/chrome/browser/chrome_select_file_dialog_factory_win.h b/chrome/browser/chrome_select_file_dialog_factory_win.h
index 1846da824ffc859c85c3087708bceba2fc82c38a..6dd9fe76cffda78f307161dacbe071ee1243e7cd 100644
--- a/chrome/browser/chrome_select_file_dialog_factory_win.h
+++ b/chrome/browser/chrome_select_file_dialog_factory_win.h
@@ -23,11 +23,11 @@ class ChromeSelectFileDialogFactory : public ui::SelectFileDialogFactory {
// Uses |blocking_task_runner| to perform IPC with the utility process.
explicit ChromeSelectFileDialogFactory(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner);
- virtual ~ChromeSelectFileDialogFactory();
+ ~ChromeSelectFileDialogFactory() override;
// ui::SelectFileDialogFactory implementation
- virtual ui::SelectFileDialog* Create(ui::SelectFileDialog::Listener* listener,
- ui::SelectFilePolicy* policy) override;
+ ui::SelectFileDialog* Create(ui::SelectFileDialog::Listener* listener,
+ ui::SelectFilePolicy* policy) override;
private:
scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
« no previous file with comments | « chrome/browser/chrome_elf_init_unittest_win.cc ('k') | chrome/browser/chromeos/file_manager/file_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698