| Index: base/prefs/pref_value_store.cc
|
| diff --git a/base/prefs/pref_value_store.cc b/base/prefs/pref_value_store.cc
|
| index 4b7aab9aebb54dc26055cd0bc828127d0aab8f4e..1a0ec08dccb5dbd36a108e8e5fc14320799400ba 100644
|
| --- a/base/prefs/pref_value_store.cc
|
| +++ b/base/prefs/pref_value_store.cc
|
| @@ -138,6 +138,10 @@ bool PrefValueStore::PrefValueInManagedStore(const std::string& name) const {
|
| return PrefValueInStore(name, MANAGED_STORE);
|
| }
|
|
|
| +bool PrefValueStore::PrefValueInSupervisedStore(const std::string& name) const {
|
| + return PrefValueInStore(name, SUPERVISED_USER_STORE);
|
| +}
|
| +
|
| bool PrefValueStore::PrefValueInExtensionStore(const std::string& name) const {
|
| return PrefValueInStore(name, EXTENSION_STORE);
|
| }
|
|
|