| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 5 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 init_params.oauth2_token_service = | 134 init_params.oauth2_token_service = |
| 135 OAuth2TokenServiceFactory::GetForBrowserState(browser_state); | 135 OAuth2TokenServiceFactory::GetForBrowserState(browser_state); |
| 136 init_params.start_behavior = ProfileSyncService::MANUAL_START; | 136 init_params.start_behavior = ProfileSyncService::MANUAL_START; |
| 137 init_params.sync_client = | 137 init_params.sync_client = |
| 138 base::MakeUnique<IOSChromeSyncClient>(browser_state); | 138 base::MakeUnique<IOSChromeSyncClient>(browser_state); |
| 139 init_params.network_time_update_callback = base::Bind(&UpdateNetworkTime); | 139 init_params.network_time_update_callback = base::Bind(&UpdateNetworkTime); |
| 140 init_params.base_directory = browser_state->GetStatePath(); | 140 init_params.base_directory = browser_state->GetStatePath(); |
| 141 init_params.url_request_context = browser_state->GetRequestContext(); | 141 init_params.url_request_context = browser_state->GetRequestContext(); |
| 142 init_params.debug_identifier = browser_state->GetDebugName(); | 142 init_params.debug_identifier = browser_state->GetDebugName(); |
| 143 init_params.channel = ::GetChannel(); | 143 init_params.channel = ::GetChannel(); |
| 144 init_params.blocking_pool = web::WebThread::GetBlockingPool(); | 144 base::SequencedWorkerPool* blocking_pool = web::WebThread::GetBlockingPool(); |
| 145 init_params.blocking_task_runner = |
| 146 blocking_pool->GetSequencedTaskRunnerWithShutdownBehavior( |
| 147 blocking_pool->GetSequenceToken(), |
| 148 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN); |
| 145 | 149 |
| 146 auto pss = base::MakeUnique<ProfileSyncService>(std::move(init_params)); | 150 auto pss = base::MakeUnique<ProfileSyncService>(std::move(init_params)); |
| 147 | 151 |
| 148 // Will also initialize the sync client. | 152 // Will also initialize the sync client. |
| 149 pss->Initialize(); | 153 pss->Initialize(); |
| 150 return std::move(pss); | 154 return std::move(pss); |
| 151 } | 155 } |
| OLD | NEW |