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

Unified Diff: chrome/browser/ui/content_settings/content_setting_image_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_image_model.cc
diff --git a/chrome/browser/ui/content_settings/content_setting_image_model.cc b/chrome/browser/ui/content_settings/content_setting_image_model.cc
index 09aff0a3484e67e8bf4e4627aed4f4eed7a99ccd..2002a580c9df320e4b53940aff15cdec01b82e55 100644
--- a/chrome/browser/ui/content_settings/content_setting_image_model.cc
+++ b/chrome/browser/ui/content_settings/content_setting_image_model.cc
@@ -20,14 +20,14 @@ class ContentSettingBlockedImageModel : public ContentSettingImageModel {
explicit ContentSettingBlockedImageModel(
ContentSettingsType content_settings_type);
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
class ContentSettingGeolocationImageModel : public ContentSettingImageModel {
public:
ContentSettingGeolocationImageModel();
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
// Image model for displaying media icons in the location bar.
@@ -35,28 +35,28 @@ class ContentSettingMediaImageModel : public ContentSettingImageModel {
public:
explicit ContentSettingMediaImageModel(ContentSettingsType type);
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
class ContentSettingRPHImageModel : public ContentSettingImageModel {
public:
ContentSettingRPHImageModel();
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
class ContentSettingNotificationsImageModel : public ContentSettingImageModel {
public:
ContentSettingNotificationsImageModel();
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
class ContentSettingMIDISysExImageModel : public ContentSettingImageModel {
public:
ContentSettingMIDISysExImageModel();
- virtual void UpdateFromWebContents(WebContents* web_contents) OVERRIDE;
+ virtual void UpdateFromWebContents(WebContents* web_contents) override;
};
namespace {

Powered by Google App Engine
This is Rietveld 408576698