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

Unified Diff: chrome/browser/devtools/devtools_file_helper.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/devtools/devtools_file_helper.cc
diff --git a/chrome/browser/devtools/devtools_file_helper.cc b/chrome/browser/devtools/devtools_file_helper.cc
index 04ab843e1c9650a179f76fb3328072ae909eeac4..fa6df0c7f14070cb590c33138c31b7333ccd6127 100644
--- a/chrome/browser/devtools/devtools_file_helper.cc
+++ b/chrome/browser/devtools/devtools_file_helper.cc
@@ -89,18 +89,18 @@ class SelectFileDialog : public ui::SelectFileDialog::Listener,
// ui::SelectFileDialog::Listener implementation.
virtual void FileSelected(const base::FilePath& path,
int index,
- void* params) OVERRIDE {
+ void* params) override {
selected_callback_.Run(path);
Release(); // Balanced in ::Show.
}
virtual void MultiFilesSelected(const std::vector<base::FilePath>& files,
- void* params) OVERRIDE {
+ void* params) override {
Release(); // Balanced in ::Show.
NOTREACHED() << "Should not be able to select multiple files";
}
- virtual void FileSelectionCanceled(void* params) OVERRIDE {
+ virtual void FileSelectionCanceled(void* params) override {
canceled_callback_.Run();
Release(); // Balanced in ::Show.
}

Powered by Google App Engine
This is Rietveld 408576698