| 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() {}
|
|
|