| Index: content/browser/browser_context.cc
|
| diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
|
| index 4ce64856c56e33762382905f30fdc56cdd0ef171..3a8d0a4b99fa202ee540c392321326ecab2343b6 100644
|
| --- a/content/browser/browser_context.cc
|
| +++ b/content/browser/browser_context.cc
|
| @@ -439,10 +439,10 @@ void BrowserContext::Initialize(
|
| if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kMojoLocalStorage)) {
|
| MojoApplicationInfo info;
|
| - info.application_factory = base::Bind(
|
| - &user_service::CreateUserService,
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB));
|
| + info.application_factory =
|
| + base::Bind(&user_service::CreateUserService,
|
| + BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE),
|
| + BrowserThread::GetTaskRunnerForThread(BrowserThread::DB));
|
| connection->AddEmbeddedService(user_service::kUserServiceName, info);
|
| }
|
| }
|
|
|