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

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

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.cc
diff --git a/chrome/browser/ui/content_settings/content_setting_bubble_model.cc b/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
index 5ae6f1b53d2ab804d02f695b7f6e126b102c66e7..0a7163c7e99a1fef1b1ee7ab497b847e2e03c736 100644
--- a/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
+++ b/chrome/browser/ui/content_settings/content_setting_bubble_model.cc
@@ -183,7 +183,7 @@ class ContentSettingTitleLinkAndCustomModel
private:
void SetCustomLink();
- virtual void OnCustomLinkClicked() OVERRIDE {}
+ virtual void OnCustomLinkClicked() override {}
};
ContentSettingTitleLinkAndCustomModel::ContentSettingTitleLinkAndCustomModel(
@@ -224,7 +224,7 @@ class ContentSettingSingleRadioGroup
private:
void SetRadioGroup();
void AddException(ContentSetting setting);
- virtual void OnRadioClicked(int radio_index) OVERRIDE;
+ virtual void OnRadioClicked(int radio_index) override;
ContentSetting block_setting_;
int selected_item_;
@@ -413,7 +413,7 @@ class ContentSettingCookiesBubbleModel : public ContentSettingSingleRadioGroup {
virtual ~ContentSettingCookiesBubbleModel();
private:
- virtual void OnCustomLinkClicked() OVERRIDE;
+ virtual void OnCustomLinkClicked() override;
};
ContentSettingCookiesBubbleModel::ContentSettingCookiesBubbleModel(
@@ -457,7 +457,7 @@ class ContentSettingPluginBubbleModel : public ContentSettingSingleRadioGroup {
virtual ~ContentSettingPluginBubbleModel();
private:
- virtual void OnCustomLinkClicked() OVERRIDE;
+ virtual void OnCustomLinkClicked() override;
};
ContentSettingPluginBubbleModel::ContentSettingPluginBubbleModel(
@@ -508,7 +508,7 @@ class ContentSettingPopupBubbleModel : public ContentSettingSingleRadioGroup {
private:
void SetPopups();
- virtual void OnPopupClicked(int index) OVERRIDE;
+ virtual void OnPopupClicked(int index) override;
};
ContentSettingPopupBubbleModel::ContentSettingPopupBubbleModel(
@@ -574,9 +574,9 @@ class ContentSettingMediaStreamBubbleModel
const std::string& device);
// ContentSettingBubbleModel implementation.
- virtual void OnRadioClicked(int radio_index) OVERRIDE;
+ virtual void OnRadioClicked(int radio_index) override;
virtual void OnMediaMenuClicked(content::MediaStreamType type,
- const std::string& selected_device) OVERRIDE;
+ const std::string& selected_device) override;
// The index of the selected radio item.
int selected_item_;
@@ -866,7 +866,7 @@ class ContentSettingDomainListBubbleModel
private:
void MaybeAddDomainList(const std::set<std::string>& hosts, int title_id);
void SetDomainsAndCustomLink();
- virtual void OnCustomLinkClicked() OVERRIDE;
+ virtual void OnCustomLinkClicked() override;
};
ContentSettingDomainListBubbleModel::ContentSettingDomainListBubbleModel(
@@ -953,7 +953,7 @@ class ContentSettingMixedScriptBubbleModel
virtual ~ContentSettingMixedScriptBubbleModel() {}
private:
- virtual void OnCustomLinkClicked() OVERRIDE;
+ virtual void OnCustomLinkClicked() override;
};
ContentSettingMixedScriptBubbleModel::ContentSettingMixedScriptBubbleModel(
@@ -1119,7 +1119,7 @@ class ContentSettingMidiSysExBubbleModel
private:
void MaybeAddDomainList(const std::set<std::string>& hosts, int title_id);
void SetDomainsAndCustomLink();
- virtual void OnCustomLinkClicked() OVERRIDE;
+ virtual void OnCustomLinkClicked() override;
};
ContentSettingMidiSysExBubbleModel::ContentSettingMidiSysExBubbleModel(

Powered by Google App Engine
This is Rietveld 408576698