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

Unified Diff: chrome/browser/ui/views/select_file_dialog_extension.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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/ui/views/select_file_dialog_extension.h
diff --git a/chrome/browser/ui/views/select_file_dialog_extension.h b/chrome/browser/ui/views/select_file_dialog_extension.h
index b29b2972719bdec52e4c7995e6af493ea5527566..1e6d191f27802fa948bbcf43de0efee5dbb3b663 100644
--- a/chrome/browser/ui/views/select_file_dialog_extension.h
+++ b/chrome/browser/ui/views/select_file_dialog_extension.h
@@ -43,12 +43,12 @@ class SelectFileDialogExtension
ui::SelectFilePolicy* policy);
// BaseShellDialog implementation.
- virtual bool IsRunning(gfx::NativeWindow owner_window) const OVERRIDE;
- virtual void ListenerDestroyed() OVERRIDE;
+ virtual bool IsRunning(gfx::NativeWindow owner_window) const override;
+ virtual void ListenerDestroyed() override;
// ExtensionDialog::Observer implementation.
- virtual void ExtensionDialogClosing(ExtensionDialog* dialog) OVERRIDE;
- virtual void ExtensionTerminated(ExtensionDialog* dialog) OVERRIDE;
+ virtual void ExtensionDialogClosing(ExtensionDialog* dialog) override;
+ virtual void ExtensionTerminated(ExtensionDialog* dialog) override;
// Routes callback to appropriate SelectFileDialog::Listener based on the
// owning |web_contents|.
@@ -73,7 +73,7 @@ class SelectFileDialogExtension
int file_type_index,
const base::FilePath::StringType& default_extension,
gfx::NativeWindow owning_window,
- void* params) OVERRIDE;
+ void* params) override;
private:
friend class SelectFileDialogExtensionBrowserTest;
@@ -94,7 +94,7 @@ class SelectFileDialogExtension
static bool PendingExists(RoutingID routing_id);
// Returns true if the dialog has multiple file type choices.
- virtual bool HasMultipleFileTypeChoicesImpl() OVERRIDE;
+ virtual bool HasMultipleFileTypeChoicesImpl() override;
bool has_multiple_file_type_choices_;

Powered by Google App Engine
This is Rietveld 408576698