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/signin/account_tracker_service_factory.h" | 5 #include "ios/chrome/browser/signin/account_tracker_service_factory.h" |
6 | 6 |
| 7 #include <utility> |
| 8 |
7 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
9 #include "components/signin/core/browser/account_tracker_service.h" | 11 #include "components/signin/core/browser/account_tracker_service.h" |
10 #include "ios/chrome/browser/signin/signin_client_factory.h" | 12 #include "ios/chrome/browser/signin/signin_client_factory.h" |
11 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | 13 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" |
12 | 14 |
13 namespace ios { | 15 namespace ios { |
14 | 16 |
15 AccountTrackerServiceFactory::AccountTrackerServiceFactory() | 17 AccountTrackerServiceFactory::AccountTrackerServiceFactory() |
16 : BrowserStateKeyedServiceFactory( | 18 : BrowserStateKeyedServiceFactory( |
(...skipping 21 matching lines...) Expand all Loading... |
38 AccountTrackerService::RegisterPrefs(registry); | 40 AccountTrackerService::RegisterPrefs(registry); |
39 } | 41 } |
40 | 42 |
41 scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor( | 43 scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor( |
42 web::BrowserState* context) const { | 44 web::BrowserState* context) const { |
43 ios::ChromeBrowserState* chrome_browser_state = | 45 ios::ChromeBrowserState* chrome_browser_state = |
44 ios::ChromeBrowserState::FromBrowserState(context); | 46 ios::ChromeBrowserState::FromBrowserState(context); |
45 scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); | 47 scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); |
46 service->Initialize( | 48 service->Initialize( |
47 SigninClientFactory::GetForBrowserState(chrome_browser_state)); | 49 SigninClientFactory::GetForBrowserState(chrome_browser_state)); |
48 return service.Pass(); | 50 return std::move(service); |
49 } | 51 } |
50 | 52 |
51 } // namespace ios | 53 } // namespace ios |
OLD | NEW |