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

Unified Diff: chrome/browser/ui/views/signed_certificate_timestamps_views.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/signed_certificate_timestamps_views.h
diff --git a/chrome/browser/ui/views/signed_certificate_timestamps_views.h b/chrome/browser/ui/views/signed_certificate_timestamps_views.h
index ea2d77b7603e394fd87c5c993cc2d44610400bf8..7b1f3ebc91be624e5b4651267036f74346337b53 100644
--- a/chrome/browser/ui/views/signed_certificate_timestamps_views.h
+++ b/chrome/browser/ui/views/signed_certificate_timestamps_views.h
@@ -36,13 +36,13 @@ class SignedCertificateTimestampsViews : public views::DialogDelegateView,
virtual ~SignedCertificateTimestampsViews();
// views::DialogDelegate:
- virtual base::string16 GetWindowTitle() const OVERRIDE;
- virtual int GetDialogButtons() const OVERRIDE;
- virtual ui::ModalType GetModalType() const OVERRIDE;
+ virtual base::string16 GetWindowTitle() const override;
+ virtual int GetDialogButtons() const override;
+ virtual ui::ModalType GetModalType() const override;
// views::View:
virtual void ViewHierarchyChanged(const ViewHierarchyChangedDetails& details)
- OVERRIDE;
+ override;
private:
void Init();
@@ -50,12 +50,12 @@ class SignedCertificateTimestampsViews : public views::DialogDelegateView,
void ShowSCTInfo(int sct_index);
// views::ComboboxListener:
- virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE;
+ virtual void OnPerformAction(views::Combobox* combobox) override;
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
SignedCertificateTimestampInfoView* sct_info_view_;

Powered by Google App Engine
This is Rietveld 408576698