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

Unified Diff: extensions/browser/extension_prefs.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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
« no previous file with comments | « extensions/browser/extension_pref_value_map_factory.h ('k') | extensions/browser/extension_prefs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_prefs.h
diff --git a/extensions/browser/extension_prefs.h b/extensions/browser/extension_prefs.h
index a322e8a5d1d86b1ac4e7b36ffd8bf6f736d84b14..a1431de87936b036d51f8b0103785a8e0c0378c0 100644
--- a/extensions/browser/extension_prefs.h
+++ b/extensions/browser/extension_prefs.h
@@ -221,33 +221,33 @@ class ExtensionPrefs : public ExtensionScopedPrefs, public KeyedService {
// ExtensionScopedPrefs methods:
virtual void UpdateExtensionPref(const std::string& id,
const std::string& key,
- base::Value* value) OVERRIDE;
+ base::Value* value) override;
- virtual void DeleteExtensionPrefs(const std::string& id) OVERRIDE;
+ virtual void DeleteExtensionPrefs(const std::string& id) override;
virtual bool ReadPrefAsBoolean(const std::string& extension_id,
const std::string& pref_key,
- bool* out_value) const OVERRIDE;
+ bool* out_value) const override;
virtual bool ReadPrefAsInteger(const std::string& extension_id,
const std::string& pref_key,
- int* out_value) const OVERRIDE;
+ int* out_value) const override;
virtual bool ReadPrefAsString(const std::string& extension_id,
const std::string& pref_key,
- std::string* out_value) const OVERRIDE;
+ std::string* out_value) const override;
virtual bool ReadPrefAsList(const std::string& extension_id,
const std::string& pref_key,
- const base::ListValue** out_value) const OVERRIDE;
+ const base::ListValue** out_value) const override;
virtual bool ReadPrefAsDictionary(
const std::string& extension_id,
const std::string& pref_key,
- const base::DictionaryValue** out_value) const OVERRIDE;
+ const base::DictionaryValue** out_value) const override;
virtual bool HasPrefForExtension(const std::string& extension_id) const
- OVERRIDE;
+ override;
// Did the extension ask to escalate its permission during an upgrade?
bool DidExtensionEscalatePermissions(const std::string& id);
« no previous file with comments | « extensions/browser/extension_pref_value_map_factory.h ('k') | extensions/browser/extension_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698