Index: components/prefs/pref_registry.cc |
diff --git a/components/prefs/pref_registry.cc b/components/prefs/pref_registry.cc |
index 92d161e8b04fbb34ec142f36c19814a0a35f6a9a..c42e77f74aa09fa36bba0a9db0d3785b7f1acfa3 100644 |
--- a/components/prefs/pref_registry.cc |
+++ b/components/prefs/pref_registry.cc |
@@ -59,8 +59,8 @@ void PrefRegistry::RegisterPreference(const std::string& path, |
"invalid preference type: " << orig_type; |
DCHECK(!defaults_->GetValue(path, NULL)) << |
"Trying to register a previously registered pref: " << path; |
- DCHECK(!ContainsKey(registration_flags_, path)) << |
- "Trying to register a previously registered pref: " << path; |
+ DCHECK(!base::ContainsKey(registration_flags_, path)) |
+ << "Trying to register a previously registered pref: " << path; |
defaults_->SetDefaultValue(path, base::WrapUnique(default_value)); |
if (flags != NO_REGISTRATION_FLAGS) |