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

Unified Diff: chrome/browser/ui/content_settings/content_setting_bubble_model.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/content_settings/content_setting_bubble_model.h
diff --git a/chrome/browser/ui/content_settings/content_setting_bubble_model.h b/chrome/browser/ui/content_settings/content_setting_bubble_model.h
index 4d1573d9499d7124b6ba5d9adc921e64c7f7e0e4..dbc3f71a14f5fbb1e4d53dd22ff887982e75c998 100644
--- a/chrome/browser/ui/content_settings/content_setting_bubble_model.h
+++ b/chrome/browser/ui/content_settings/content_setting_bubble_model.h
@@ -108,7 +108,7 @@ class ContentSettingBubbleModel : public content::NotificationObserver {
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
virtual void OnRadioClicked(int radio_index) {}
virtual void OnPopupClicked(int index) {}
@@ -198,8 +198,8 @@ class ContentSettingTitleAndLinkModel : public ContentSettingBubbleModel {
void SetLearnMoreLink();
// content::ContentSettingBubbleModel:
- virtual void OnManageLinkClicked() OVERRIDE;
- virtual void OnLearnMoreLinkClicked() OVERRIDE;
+ virtual void OnManageLinkClicked() override;
+ virtual void OnLearnMoreLinkClicked() override;
Delegate* delegate_;
};
@@ -211,8 +211,8 @@ class ContentSettingRPHBubbleModel : public ContentSettingTitleAndLinkModel {
ProtocolHandlerRegistry* registry,
ContentSettingsType content_type);
- virtual void OnRadioClicked(int radio_index) OVERRIDE;
- virtual void OnDoneClicked() OVERRIDE;
+ virtual void OnRadioClicked(int radio_index) override;
+ virtual void OnDoneClicked() override;
private:
// These states must match the order of appearance of the radio buttons

Powered by Google App Engine
This is Rietveld 408576698