| Index: base/prefs/pref_value_store.cc
|
| diff --git a/base/prefs/pref_value_store.cc b/base/prefs/pref_value_store.cc
|
| index 2c22f17febebdd15aa8590778af7bcbce4a6a6e8..1d8c9dc7fba85199a0e2b1e7d066a15850569776 100644
|
| --- a/base/prefs/pref_value_store.cc
|
| +++ b/base/prefs/pref_value_store.cc
|
| @@ -116,6 +116,12 @@ bool PrefValueStore::GetValue(const std::string& name,
|
| return false;
|
| }
|
|
|
| +bool PrefValueStore::GetUserValue(const std::string& name,
|
| + base::Value::Type type,
|
| + const base::Value** out_value) const {
|
| + return GetValueFromStoreWithType(name.c_str(), type, USER_STORE, out_value);
|
| +}
|
| +
|
| bool PrefValueStore::GetRecommendedValue(const std::string& name,
|
| base::Value::Type type,
|
| const base::Value** out_value) const {
|
|
|