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

Unified Diff: chrome/browser/content_settings/content_settings_override_provider.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/content_settings/content_settings_override_provider.h
diff --git a/chrome/browser/content_settings/content_settings_override_provider.h b/chrome/browser/content_settings/content_settings_override_provider.h
index bcbd3eee61d7e2fc17696a5be999aca445402232..38d8eb186b921cf825629efb052f2f6c7041867d 100644
--- a/chrome/browser/content_settings/content_settings_override_provider.h
+++ b/chrome/browser/content_settings/content_settings_override_provider.h
@@ -33,19 +33,19 @@ class OverrideProvider : public ProviderInterface {
virtual RuleIterator* GetRuleIterator(
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
- bool incognito) const OVERRIDE;
+ bool incognito) const override;
virtual void ClearAllContentSettingsRules(
- ContentSettingsType content_type) OVERRIDE;
+ ContentSettingsType content_type) override;
virtual bool SetWebsiteSetting(
const ContentSettingsPattern& primary_pattern,
const ContentSettingsPattern& secondary_pattern,
ContentSettingsType content_type,
const ResourceIdentifier& resource_identifier,
- base::Value* value) OVERRIDE;
+ base::Value* value) override;
- virtual void ShutdownOnUIThread() OVERRIDE;
+ virtual void ShutdownOnUIThread() override;
// Sets if a given |content_type| is |enabled|.
void SetOverrideSetting(ContentSettingsType content_type, bool enabled);

Powered by Google App Engine
This is Rietveld 408576698