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

Unified Diff: extensions/browser/extension_prefs.h

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 years 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_function.cc ('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 af4f412d6eccdf12bcbbab1d6d9d787794de7159..226db3ee3972a67e535d3f8b0b8f5d5df6aa4946 100644
--- a/extensions/browser/extension_prefs.h
+++ b/extensions/browser/extension_prefs.h
@@ -117,9 +117,9 @@ class ExtensionPrefs : public ExtensionScopedPrefs, public KeyedService {
DISALLOW_COPY_AND_ASSIGN(ScopedUpdate);
};
- typedef ScopedUpdate<base::DictionaryValue, base::Value::TYPE_DICTIONARY>
+ typedef ScopedUpdate<base::DictionaryValue, base::Value::Type::DICTIONARY>
ScopedDictionaryUpdate;
- typedef ScopedUpdate<base::ListValue, base::Value::TYPE_LIST>
+ typedef ScopedUpdate<base::ListValue, base::Value::Type::LIST>
ScopedListUpdate;
// Creates an ExtensionPrefs object.
« no previous file with comments | « extensions/browser/extension_function.cc ('k') | extensions/browser/extension_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698