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

Unified Diff: chrome/browser/file_select_helper.h

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/file_select_helper.h
diff --git a/chrome/browser/file_select_helper.h b/chrome/browser/file_select_helper.h
index cc0db8a31ca04d8b117d303c624907b453daffa6..f71a92f164f92d622554a473da6475eed4760afc 100644
--- a/chrome/browser/file_select_helper.h
+++ b/chrome/browser/file_select_helper.h
@@ -62,8 +62,8 @@ class FileSelectHelper
id_(id) {}
virtual ~DirectoryListerDispatchDelegate() {}
virtual void OnListFile(
- const net::DirectoryLister::DirectoryListerData& data) OVERRIDE;
- virtual void OnListDone(int error) OVERRIDE;
+ const net::DirectoryLister::DirectoryListerData& data) override;
+ virtual void OnListDone(int error) override;
private:
// This FileSelectHelper owns this object.
FileSelectHelper* parent_;
@@ -86,22 +86,22 @@ class FileSelectHelper
// SelectFileDialog::Listener overrides.
virtual void FileSelected(
- const base::FilePath& path, int index, void* params) OVERRIDE;
+ const base::FilePath& path, int index, void* params) override;
virtual void FileSelectedWithExtraInfo(
const ui::SelectedFileInfo& file,
int index,
- void* params) OVERRIDE;
+ void* params) override;
virtual void MultiFilesSelected(const std::vector<base::FilePath>& files,
- void* params) OVERRIDE;
+ void* params) override;
virtual void MultiFilesSelectedWithExtraInfo(
const std::vector<ui::SelectedFileInfo>& files,
- void* params) OVERRIDE;
- virtual void FileSelectionCanceled(void* params) OVERRIDE;
+ void* params) override;
+ virtual void FileSelectionCanceled(void* params) override;
// content::NotificationObserver overrides.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
void EnumerateDirectory(int request_id,
content::RenderViewHost* render_view_host,
« no previous file with comments | « chrome/browser/feedback/system_logs/log_sources/memory_details_log_source.cc ('k') | chrome/browser/first_run/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698