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

Unified Diff: chrome/browser/ui/views/extensions/extension_dialog.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/extensions/extension_dialog.h
diff --git a/chrome/browser/ui/views/extensions/extension_dialog.h b/chrome/browser/ui/views/extensions/extension_dialog.h
index f7570de7e610a1daa834c0d15db993e19006e4fe..ff63790e180da7a253bce64d8aa252de2550f4e8 100644
--- a/chrome/browser/ui/views/extensions/extension_dialog.h
+++ b/chrome/browser/ui/views/extensions/extension_dialog.h
@@ -64,22 +64,22 @@ class ExtensionDialog : public views::DialogDelegate,
extensions::ExtensionViewHost* host() const { return host_.get(); }
// views::DialogDelegate override.
- virtual int GetDialogButtons() const OVERRIDE;
- virtual bool CanResize() const OVERRIDE;
- virtual ui::ModalType GetModalType() const OVERRIDE;
- virtual bool ShouldShowWindowTitle() const OVERRIDE;
- virtual base::string16 GetWindowTitle() const OVERRIDE;
- virtual void WindowClosing() OVERRIDE;
- virtual void DeleteDelegate() OVERRIDE;
- virtual views::Widget* GetWidget() OVERRIDE;
- virtual const views::Widget* GetWidget() const OVERRIDE;
- virtual views::View* GetContentsView() OVERRIDE;
- virtual bool UseNewStyleForThisDialog() const OVERRIDE;
+ virtual int GetDialogButtons() const override;
+ virtual bool CanResize() const override;
+ virtual ui::ModalType GetModalType() const override;
+ virtual bool ShouldShowWindowTitle() const override;
+ virtual base::string16 GetWindowTitle() const override;
+ virtual void WindowClosing() override;
+ virtual void DeleteDelegate() override;
+ virtual views::Widget* GetWidget() override;
+ virtual const views::Widget* GetWidget() const override;
+ virtual views::View* GetContentsView() override;
+ virtual bool UseNewStyleForThisDialog() const override;
// content::NotificationObserver overrides.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
protected:
virtual ~ExtensionDialog();

Powered by Google App Engine
This is Rietveld 408576698