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

Unified Diff: chrome/browser/chromeos/attestation/platform_verification_dialog.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/attestation/platform_verification_dialog.h
diff --git a/chrome/browser/chromeos/attestation/platform_verification_dialog.h b/chrome/browser/chromeos/attestation/platform_verification_dialog.h
index 4afdf942e9e352ded2cebb72fa69d7bfee83825f..0777cd7695cf2471aa3d82d4c0a7245bb91f2eb3 100644
--- a/chrome/browser/chromeos/attestation/platform_verification_dialog.h
+++ b/chrome/browser/chromeos/attestation/platform_verification_dialog.h
@@ -38,21 +38,21 @@ class PlatformVerificationDialog : public views::DialogDelegateView,
const PlatformVerificationFlow::Delegate::ConsentCallback& callback);
// Overridden from views::DialogDelegate:
- virtual bool Cancel() OVERRIDE;
- virtual bool Accept() OVERRIDE;
- virtual bool Close() OVERRIDE;
+ virtual bool Cancel() override;
+ virtual bool Accept() override;
+ virtual bool Close() override;
virtual base::string16 GetDialogButtonLabel(
- ui::DialogButton button) const OVERRIDE;
+ ui::DialogButton button) const override;
// Overridden from views::WidgetDelegate:
- virtual ui::ModalType GetModalType() const OVERRIDE;
+ virtual ui::ModalType GetModalType() const override;
// Overridden from views::View:
- virtual gfx::Size GetPreferredSize() const OVERRIDE;
+ virtual gfx::Size GetPreferredSize() const override;
// Overridden from views::StyledLabelListener:
virtual void StyledLabelLinkClicked(const gfx::Range& range,
- int event_flags) OVERRIDE;
+ int event_flags) override;
content::WebContents* web_contents_;
base::string16 domain_;

Powered by Google App Engine
This is Rietveld 408576698