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

Unified Diff: chrome/browser/ui/webui/options/website_settings_handler.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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/webui/options/website_settings_handler.h
diff --git a/chrome/browser/ui/webui/options/website_settings_handler.h b/chrome/browser/ui/webui/options/website_settings_handler.h
index 653e1b3e52de7db8dacdb588813580fe9bc67d8e..69d80e6bc352e514e8b0d3c80997be0675e69878 100644
--- a/chrome/browser/ui/webui/options/website_settings_handler.h
+++ b/chrome/browser/ui/webui/options/website_settings_handler.h
@@ -29,20 +29,20 @@ class WebsiteSettingsHandler : public content_settings::Observer,
// OptionsPageUIHandler implementation.
virtual void GetLocalizedValues(
- base::DictionaryValue* localized_strings) OVERRIDE;
- virtual void InitializeHandler() OVERRIDE;
- virtual void RegisterMessages() OVERRIDE;
+ base::DictionaryValue* localized_strings) override;
+ virtual void InitializeHandler() override;
+ virtual void RegisterMessages() override;
// content_settings::Observer implementation.
virtual void OnContentSettingChanged(
const ContentSettingsPattern& primary_pattern,
const ContentSettingsPattern& secondary_pattern,
ContentSettingsType content_type,
- std::string resource_identifier) OVERRIDE;
+ std::string resource_identifier) override;
virtual void OnContentSettingUsed(
const ContentSettingsPattern& primary_pattern,
const ContentSettingsPattern& secondary_pattern,
- ContentSettingsType content_type) OVERRIDE;
+ ContentSettingsType content_type) override;
private:
// Update the page with all origins for a given content setting.

Powered by Google App Engine
This is Rietveld 408576698