Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1787)

Unified Diff: chrome/browser/prefs/pref_hash_store_impl.cc

Issue 116543010: Remove the Value class names from the global namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/pref_hash_store_impl.cc
diff --git a/chrome/browser/prefs/pref_hash_store_impl.cc b/chrome/browser/prefs/pref_hash_store_impl.cc
index 0d08c556c72ec4c822ca0d06dd950ffd68970ead..ef698fc75fcef3ca1726764ae3cfe8e2f25fbe3e 100644
--- a/chrome/browser/prefs/pref_hash_store_impl.cc
+++ b/chrome/browser/prefs/pref_hash_store_impl.cc
@@ -57,13 +57,13 @@ void PrefHashStoreImpl::StoreHash(
const std::string& path, const base::Value* new_value) {
{
DictionaryPrefUpdate update(local_state_, prefs::kProfilePreferenceHashes);
- DictionaryValue* child_dictionary = NULL;
+ base::DictionaryValue* child_dictionary = NULL;
// Get the dictionary corresponding to the profile name, which may have a
// '.'
if (!update->GetDictionaryWithoutPathExpansion(hash_store_id_,
&child_dictionary)) {
- child_dictionary = new DictionaryValue;
+ child_dictionary = new base::DictionaryValue;
update->SetWithoutPathExpansion(hash_store_id_, child_dictionary);
}
« no previous file with comments | « chrome/browser/prefs/pref_hash_calculator_unittest.cc ('k') | chrome/browser/prefs/pref_hash_store_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698