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

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

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. Created 4 years, 3 months 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_test_util.h" 5 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_test_util.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "components/browser_sync/profile_sync_service_mock.h" 9 #include "components/browser_sync/profile_sync_service_mock.h"
10 #include "components/browser_sync/profile_sync_test_util.h" 10 #include "components/browser_sync/profile_sync_test_util.h"
11 #include "components/signin/core/browser/profile_oauth2_token_service.h" 11 #include "components/signin/core/browser/profile_oauth2_token_service.h"
12 #include "components/signin/core/browser/signin_manager.h" 12 #include "components/signin/core/browser/signin_manager.h"
13 #include "components/sync/driver/signin_manager_wrapper.h" 13 #include "components/sync/driver/signin_manager_wrapper.h"
14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
15 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" 15 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h"
16 #include "ios/chrome/browser/signin/signin_manager_factory.h" 16 #include "ios/chrome/browser/signin/signin_manager_factory.h"
17 #include "ios/chrome/browser/sync/ios_chrome_sync_client.h" 17 #include "ios/chrome/browser/sync/ios_chrome_sync_client.h"
18 #include "ios/chrome/common/channel_info.h" 18 #include "ios/chrome/common/channel_info.h"
19 #include "ios/web/public/web_thread.h" 19 #include "ios/web/public/web_thread.h"
20 20
21 ProfileSyncService::InitParams CreateProfileSyncServiceParamsForTest( 21 browser_sync::ProfileSyncService::InitParams
22 CreateProfileSyncServiceParamsForTest(
22 std::unique_ptr<sync_driver::SyncClient> sync_client, 23 std::unique_ptr<sync_driver::SyncClient> sync_client,
23 ios::ChromeBrowserState* browser_state) { 24 ios::ChromeBrowserState* browser_state) {
24 ProfileSyncService::InitParams init_params; 25 browser_sync::ProfileSyncService::InitParams init_params;
25 26
26 init_params.signin_wrapper = base::MakeUnique<SigninManagerWrapper>( 27 init_params.signin_wrapper = base::MakeUnique<SigninManagerWrapper>(
27 ios::SigninManagerFactory::GetForBrowserState(browser_state)); 28 ios::SigninManagerFactory::GetForBrowserState(browser_state));
28 init_params.oauth2_token_service = 29 init_params.oauth2_token_service =
29 OAuth2TokenServiceFactory::GetForBrowserState(browser_state); 30 OAuth2TokenServiceFactory::GetForBrowserState(browser_state);
30 init_params.start_behavior = ProfileSyncService::MANUAL_START; 31 init_params.start_behavior = browser_sync::ProfileSyncService::MANUAL_START;
31 init_params.sync_client = 32 init_params.sync_client =
32 sync_client ? std::move(sync_client) 33 sync_client ? std::move(sync_client)
33 : base::MakeUnique<IOSChromeSyncClient>(browser_state); 34 : base::MakeUnique<IOSChromeSyncClient>(browser_state);
34 init_params.network_time_update_callback = 35 init_params.network_time_update_callback =
35 base::Bind(&browser_sync::EmptyNetworkTimeUpdate); 36 base::Bind(&browser_sync::EmptyNetworkTimeUpdate);
36 init_params.base_directory = browser_state->GetStatePath(); 37 init_params.base_directory = browser_state->GetStatePath();
37 init_params.url_request_context = browser_state->GetRequestContext(); 38 init_params.url_request_context = browser_state->GetRequestContext();
38 init_params.debug_identifier = browser_state->GetDebugName(); 39 init_params.debug_identifier = browser_state->GetDebugName();
39 init_params.channel = ::GetChannel(); 40 init_params.channel = ::GetChannel();
40 init_params.db_thread = 41 init_params.db_thread =
41 web::WebThread::GetTaskRunnerForThread(web::WebThread::DB); 42 web::WebThread::GetTaskRunnerForThread(web::WebThread::DB);
42 init_params.file_thread = 43 init_params.file_thread =
43 web::WebThread::GetTaskRunnerForThread(web::WebThread::FILE); 44 web::WebThread::GetTaskRunnerForThread(web::WebThread::FILE);
44 init_params.blocking_pool = web::WebThread::GetBlockingPool(); 45 init_params.blocking_pool = web::WebThread::GetBlockingPool();
45 46
46 return init_params; 47 return init_params;
47 } 48 }
48 49
49 std::unique_ptr<KeyedService> BuildMockProfileSyncService( 50 std::unique_ptr<KeyedService> BuildMockProfileSyncService(
50 web::BrowserState* context) { 51 web::BrowserState* context) {
51 return base::MakeUnique<ProfileSyncServiceMock>( 52 return base::MakeUnique<browser_sync::ProfileSyncServiceMock>(
52 CreateProfileSyncServiceParamsForTest( 53 CreateProfileSyncServiceParamsForTest(
53 nullptr, ios::ChromeBrowserState::FromBrowserState(context))); 54 nullptr, ios::ChromeBrowserState::FromBrowserState(context)));
54 } 55 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/ios_chrome_profile_sync_test_util.h ('k') | ios/chrome/browser/sync/ios_chrome_sync_client.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698