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

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

Issue 2299523003: Add synchronous callback support to important_file_writer.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update some comments Created 4 years, 3 months 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/profile_pref_store_manager.cc
diff --git a/chrome/browser/prefs/profile_pref_store_manager.cc b/chrome/browser/prefs/profile_pref_store_manager.cc
index faba02c8c1afb9a9bf0bc892bdd978d658fd4eb2..fdfc94438820a87cfd8d5f337c5cf1cdce76a2b5 100644
--- a/chrome/browser/prefs/profile_pref_store_manager.cc
+++ b/chrome/browser/prefs/profile_pref_store_manager.cc
@@ -134,9 +134,9 @@ PersistentPrefStore* ProfilePrefStoreManager::CreateProfilePrefStore(
unprotected_pref_names, protected_pref_names,
base::Bind(&RemoveValueSilently, unprotected_pref_store->AsWeakPtr()),
base::Bind(&RemoveValueSilently, protected_pref_store->AsWeakPtr()),
- base::Bind(&JsonPrefStore::RegisterOnNextSuccessfulWriteCallback,
+ base::Bind(&JsonPrefStore::RegisterOnNextSuccessfulWriteReply,
unprotected_pref_store->AsWeakPtr()),
- base::Bind(&JsonPrefStore::RegisterOnNextSuccessfulWriteCallback,
+ base::Bind(&JsonPrefStore::RegisterOnNextSuccessfulWriteReply,
protected_pref_store->AsWeakPtr()),
GetPrefHashStore(false), GetPrefHashStore(true),
raw_unprotected_pref_hash_filter, raw_protected_pref_hash_filter);

Powered by Google App Engine
This is Rietveld 408576698