Index: chrome/browser/prefs/pref_service.cc |
diff --git a/chrome/browser/prefs/pref_service.cc b/chrome/browser/prefs/pref_service.cc |
index 716e584927f72081e99e49f7d1ee017e0346f34b..59fd803437515e153a22d5013eb9e334222f9c73 100644 |
--- a/chrome/browser/prefs/pref_service.cc |
+++ b/chrome/browser/prefs/pref_service.cc |
@@ -23,7 +23,7 @@ |
#include "chrome/browser/policy/configuration_policy_pref_store.h" |
#include "chrome/browser/prefs/command_line_pref_store.h" |
#include "chrome/browser/prefs/default_pref_store.h" |
-#include "chrome/browser/prefs/overlay_persistent_pref_store.h" |
+#include "chrome/browser/prefs/incognito_user_pref_store.h" |
#include "chrome/browser/prefs/pref_model_associator.h" |
#include "chrome/browser/prefs/pref_notifier_impl.h" |
#include "chrome/browser/prefs/pref_value_store.h" |
@@ -184,7 +184,7 @@ PrefService::PrefService(PrefStore* managed_platform_prefs, |
PrefService::PrefService(const PrefService& original, |
PrefStore* incognito_extension_prefs) |
: user_pref_store_( |
- new OverlayPersistentPrefStore(original.user_pref_store_.get())), |
+ new IncognitoUserPrefStore(original.user_pref_store_.get())), |
default_store_(original.default_store_.get()) { |
// Incognito mode doesn't sync, so no need to create PrefModelAssociator. |
pref_notifier_.reset(new PrefNotifierImpl(this)); |