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

Side by Side Diff: ios/chrome/browser/signin/account_tracker_service_factory.cc

Issue 1667733002: Move chrome_browser_state.{cc,h} to ios/chrome/browser/browser_state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test_support_ios
Patch Set: Created 4 years, 10 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/signin/account_tracker_service_factory.h" 5 #include "ios/chrome/browser/signin/account_tracker_service_factory.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
11 #include "components/signin/core/browser/account_tracker_service.h" 11 #include "components/signin/core/browser/account_tracker_service.h"
12 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
12 #include "ios/chrome/browser/signin/signin_client_factory.h" 13 #include "ios/chrome/browser/signin/signin_client_factory.h"
13 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h"
14 14
15 namespace ios { 15 namespace ios {
16 16
17 AccountTrackerServiceFactory::AccountTrackerServiceFactory() 17 AccountTrackerServiceFactory::AccountTrackerServiceFactory()
18 : BrowserStateKeyedServiceFactory( 18 : BrowserStateKeyedServiceFactory(
19 "AccountTrackerService", 19 "AccountTrackerService",
20 BrowserStateDependencyManager::GetInstance()) { 20 BrowserStateDependencyManager::GetInstance()) {
21 DependsOn(SigninClientFactory::GetInstance()); 21 DependsOn(SigninClientFactory::GetInstance());
22 } 22 }
23 23
(...skipping 20 matching lines...) Expand all
44 web::BrowserState* context) const { 44 web::BrowserState* context) const {
45 ios::ChromeBrowserState* chrome_browser_state = 45 ios::ChromeBrowserState* chrome_browser_state =
46 ios::ChromeBrowserState::FromBrowserState(context); 46 ios::ChromeBrowserState::FromBrowserState(context);
47 scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); 47 scoped_ptr<AccountTrackerService> service(new AccountTrackerService());
48 service->Initialize( 48 service->Initialize(
49 SigninClientFactory::GetForBrowserState(chrome_browser_state)); 49 SigninClientFactory::GetForBrowserState(chrome_browser_state));
50 return std::move(service); 50 return std::move(service);
51 } 51 }
52 52
53 } // namespace ios 53 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/signin/account_reconcilor_factory.cc ('k') | ios/chrome/browser/signin/browser_state_data_remover.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698