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

Unified Diff: chrome/service/service_process_prefs.cc

Issue 11027070: Moved JsonPrefStore to use SequencedWorkerPool (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/service/service_process_prefs.cc
diff --git a/chrome/service/service_process_prefs.cc b/chrome/service/service_process_prefs.cc
index 811647dc525c32238714d7fe46c9e28a35fa1e23..e417988be8eaa6a02bbffc5afe91a8bb2db3bd09 100644
--- a/chrome/service/service_process_prefs.cc
+++ b/chrome/service/service_process_prefs.cc
@@ -4,12 +4,13 @@
#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::SequencedTaskRunner* task_runner)
+ : prefs_(new JsonPrefStore(pref_filename, task_runner)) {
}
ServiceProcessPrefs::~ServiceProcessPrefs() {}

Powered by Google App Engine
This is Rietveld 408576698