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

Side by Side Diff: ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.cc

Issue 2489433002: [Sync] Move thread checking into the ModelSafeWorker interface. (Closed)
Patch Set: Improve/add comments. Created 4 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 unified diff | Download patch
OLDNEW
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
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.db_thread =
145 web::WebThread::GetTaskRunnerForThread(web::WebThread::DB);
146 init_params.file_thread =
147 web::WebThread::GetTaskRunnerForThread(web::WebThread::FILE);
148 init_params.blocking_pool = web::WebThread::GetBlockingPool(); 144 init_params.blocking_pool = web::WebThread::GetBlockingPool();
149 145
150 auto pss = base::MakeUnique<ProfileSyncService>(std::move(init_params)); 146 auto pss = base::MakeUnique<ProfileSyncService>(std::move(init_params));
151 147
152 // Will also initialize the sync client. 148 // Will also initialize the sync client.
153 pss->Initialize(); 149 pss->Initialize();
154 return std::move(pss); 150 return std::move(pss);
155 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698