Index: chrome/service/service_process_prefs.cc |
diff --git a/chrome/service/service_process_prefs.cc b/chrome/service/service_process_prefs.cc |
index 7de70a4b573e39fab97d28f3ebe7d882d2c984a3..78e18aa54d1f66053c0336c60f9b0a4d16bca958 100644 |
--- a/chrome/service/service_process_prefs.cc |
+++ b/chrome/service/service_process_prefs.cc |
@@ -4,12 +4,14 @@ |
#include "chrome/service/service_process_prefs.h" |
+#include "base/message_loop_proxy.h" |
#include "base/values.h" |
ServiceProcessPrefs::ServiceProcessPrefs( |
const FilePath& pref_filename, |
- base::MessageLoopProxy* file_message_loop_proxy) |
- : prefs_(new JsonPrefStore(pref_filename, file_message_loop_proxy)) { |
+ base::SequencedWorkerPool* blocking_pool) |
+ : prefs_(JsonPrefStore::CreateWithBlockingPool(pref_filename, |
+ blocking_pool)) { |
willchan no longer on Chromium
2012/10/17 23:41:19
indent is off
|
} |
ServiceProcessPrefs::~ServiceProcessPrefs() {} |