| 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
|
|
|