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

Unified Diff: chrome/browser/extensions/api/content_settings/content_settings_service.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/api/content_settings/content_settings_service.h
diff --git a/chrome/browser/extensions/api/content_settings/content_settings_service.h b/chrome/browser/extensions/api/content_settings/content_settings_service.h
index 08a30dc03d9a87b7a4ec93cee4ea152cd413e72c..4534dfc06d35a12455d2e2152591dce7cd420727 100644
--- a/chrome/browser/extensions/api/content_settings/content_settings_service.h
+++ b/chrome/browser/extensions/api/content_settings/content_settings_service.h
@@ -36,13 +36,13 @@ class ContentSettingsService : public BrowserContextKeyedAPI,
// ExtensionPrefsObserver implementation.
virtual void OnExtensionRegistered(const std::string& extension_id,
const base::Time& install_time,
- bool is_enabled) OVERRIDE;
+ bool is_enabled) override;
virtual void OnExtensionPrefsLoaded(const std::string& extension_id,
- const ExtensionPrefs* prefs) OVERRIDE;
+ const ExtensionPrefs* prefs) override;
virtual void OnExtensionPrefsDeleted(const std::string& extension_id)
- OVERRIDE;
+ override;
virtual void OnExtensionStateChanged(const std::string& extension_id,
- bool state) OVERRIDE;
+ bool state) override;
private:
friend class BrowserContextKeyedAPIFactory<ContentSettingsService>;

Powered by Google App Engine
This is Rietveld 408576698