| Index: chrome/browser/prefs/pref_value_store.cc
|
| diff --git a/chrome/browser/prefs/pref_value_store.cc b/chrome/browser/prefs/pref_value_store.cc
|
| index 84b6919ec7067db82354d49ea8596d67b7c1a504..4ff93f4d85dd45b65d095ce5f7b54219b8ce6ded 100644
|
| --- a/chrome/browser/prefs/pref_value_store.cc
|
| +++ b/chrome/browser/prefs/pref_value_store.cc
|
| @@ -56,7 +56,7 @@ PrefValueStore* PrefValueStore::CreatePrefValueStore(
|
| device_management =
|
| ConfigurationPolicyPrefStore::CreateDeviceManagementPolicyPrefStore(
|
| profile);
|
| - extension = new ExtensionPrefStore(profile, PrefNotifier::EXTENSION_STORE);
|
| + extension = new ExtensionPrefStore(profile);
|
| command_line = new CommandLinePrefStore(CommandLine::ForCurrentProcess());
|
| recommended =
|
| ConfigurationPolicyPrefStore::CreateRecommendedPolicyPrefStore();
|
| @@ -154,7 +154,8 @@ bool PrefValueStore::PrefHasChanged(const char* path,
|
| return true;
|
|
|
| PrefNotifier::PrefStoreType controller = ControllingPrefStoreForPref(path);
|
| - DCHECK(controller != PrefNotifier::INVALID_STORE);
|
| + DCHECK(controller != PrefNotifier::INVALID_STORE)
|
| + << "Invalid controller for path " << path;
|
| if (controller == PrefNotifier::INVALID_STORE)
|
| return true;
|
|
|
|
|