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

Unified Diff: chrome/browser/ui/views/pdf_password_dialog.cc

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/pdf_password_dialog.cc
diff --git a/chrome/browser/ui/views/pdf_password_dialog.cc b/chrome/browser/ui/views/pdf_password_dialog.cc
index f444fabcdcc84a9ef2be833a4cdcdd6dad1cda30..16516e7c25efd560d09c460f1371f6f3a978713a 100644
--- a/chrome/browser/ui/views/pdf_password_dialog.cc
+++ b/chrome/browser/ui/views/pdf_password_dialog.cc
@@ -24,19 +24,19 @@ class PDFPasswordDialogViews : public views::DialogDelegate {
virtual ~PDFPasswordDialogViews();
// views::DialogDelegate:
- virtual base::string16 GetWindowTitle() const OVERRIDE;
+ virtual base::string16 GetWindowTitle() const override;
virtual base::string16 GetDialogButtonLabel(
- ui::DialogButton button) const OVERRIDE;
- virtual bool Cancel() OVERRIDE;
- virtual bool Accept() OVERRIDE;
+ ui::DialogButton button) const override;
+ virtual bool Cancel() override;
+ virtual bool Accept() override;
// views::WidgetDelegate:
- virtual views::View* GetInitiallyFocusedView() OVERRIDE;
- virtual views::View* GetContentsView() OVERRIDE;
- virtual views::Widget* GetWidget() OVERRIDE;
- virtual const views::Widget* GetWidget() const OVERRIDE;
- virtual void DeleteDelegate() OVERRIDE;
- virtual ui::ModalType GetModalType() const OVERRIDE;
+ virtual views::View* GetInitiallyFocusedView() override;
+ virtual views::View* GetContentsView() override;
+ virtual views::Widget* GetWidget() override;
+ virtual const views::Widget* GetWidget() const override;
+ virtual void DeleteDelegate() override;
+ virtual ui::ModalType GetModalType() const override;
private:
// The message box view whose commands we handle.

Powered by Google App Engine
This is Rietveld 408576698