summaryrefslogtreecommitdiffstats
path: root/base/prefs/testing_pref_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/prefs/testing_pref_service.h')
-rw-r--r--base/prefs/testing_pref_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/prefs/testing_pref_service.h b/base/prefs/testing_pref_service.h
index fee1981..ff15c4d 100644
--- a/base/prefs/testing_pref_service.h
+++ b/base/prefs/testing_pref_service.h
@@ -112,7 +112,7 @@ template<class SuperPrefService, class ConstructionPrefRegistry>
const Value* TestingPrefServiceBase<
SuperPrefService, ConstructionPrefRegistry>::GetManagedPref(
const char* path) const {
- return GetPref(managed_prefs_, path);
+ return GetPref(managed_prefs_.get(), path);
}
template<class SuperPrefService, class ConstructionPrefRegistry>
@@ -133,7 +133,7 @@ template<class SuperPrefService, class ConstructionPrefRegistry>
const Value* TestingPrefServiceBase<
SuperPrefService, ConstructionPrefRegistry>::GetUserPref(
const char* path) const {
- return GetPref(user_prefs_, path);
+ return GetPref(user_prefs_.get(), path);
}
template<class SuperPrefService, class ConstructionPrefRegistry>