| Index: chrome/browser/sync/profile_sync_test_util.cc
|
| diff --git a/chrome/browser/sync/profile_sync_test_util.cc b/chrome/browser/sync/profile_sync_test_util.cc
|
| index c06b04f56078b2127358244c2362f614f03c8bfa..c59b3c0a1c8c724319511c8ed8fd5a2d83a586f9 100644
|
| --- a/chrome/browser/sync/profile_sync_test_util.cc
|
| +++ b/chrome/browser/sync/profile_sync_test_util.cc
|
| @@ -55,7 +55,12 @@ ProfileSyncService::InitParams CreateProfileSyncServiceParamsForTest(
|
| init_params.url_request_context = profile->GetRequestContext();
|
| init_params.debug_identifier = profile->GetDebugName();
|
| init_params.channel = chrome::GetChannel();
|
| - init_params.blocking_pool = content::BrowserThread::GetBlockingPool();
|
| + base::SequencedWorkerPool* blocking_pool =
|
| + content::BrowserThread::GetBlockingPool();
|
| + init_params.blocking_task_runner =
|
| + blocking_pool->GetSequencedTaskRunnerWithShutdownBehavior(
|
| + blocking_pool->GetSequenceToken(),
|
| + base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
|
|
|
| return init_params;
|
| }
|
|
|