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

Unified Diff: chrome/browser/content_settings/cookie_settings.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/cookie_settings.h
diff --git a/chrome/browser/content_settings/cookie_settings.h b/chrome/browser/content_settings/cookie_settings.h
index 448b87a0b84ba9239b917db06a4703b8c24c7dd9..0dde88460d9a0eeb02d19bb779959dfe2fc452f5 100644
--- a/chrome/browser/content_settings/cookie_settings.h
+++ b/chrome/browser/content_settings/cookie_settings.h
@@ -90,7 +90,7 @@ class CookieSettings : public RefcountedKeyedService {
// Detaches the |CookieSettings| from all |Profile|-related objects like
// |PrefService|. This methods needs to be called before destroying the
// |Profile|. Afterwards, only const methods can be called.
- virtual void ShutdownOnUIThread() OVERRIDE;
+ virtual void ShutdownOnUIThread() override;
// A helper for applying third party cookie blocking rules.
ContentSetting GetCookieSetting(
@@ -118,11 +118,11 @@ class CookieSettings : public RefcountedKeyedService {
// |BrowserContextKeyedBaseFactory| methods:
virtual void RegisterProfilePrefs(
- user_prefs::PrefRegistrySyncable* registry) OVERRIDE;
+ user_prefs::PrefRegistrySyncable* registry) override;
virtual content::BrowserContext* GetBrowserContextToUse(
- content::BrowserContext* context) const OVERRIDE;
+ content::BrowserContext* context) const override;
virtual scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor(
- content::BrowserContext* context) const OVERRIDE;
+ content::BrowserContext* context) const override;
};
private:

Powered by Google App Engine
This is Rietveld 408576698