| 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> | 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" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 // static | 33 // static |
| 34 AccountTrackerServiceFactory* AccountTrackerServiceFactory::GetInstance() { | 34 AccountTrackerServiceFactory* AccountTrackerServiceFactory::GetInstance() { |
| 35 return base::Singleton<AccountTrackerServiceFactory>::get(); | 35 return base::Singleton<AccountTrackerServiceFactory>::get(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 void AccountTrackerServiceFactory::RegisterBrowserStatePrefs( | 38 void AccountTrackerServiceFactory::RegisterBrowserStatePrefs( |
| 39 user_prefs::PrefRegistrySyncable* registry) { | 39 user_prefs::PrefRegistrySyncable* registry) { |
| 40 AccountTrackerService::RegisterPrefs(registry); | 40 AccountTrackerService::RegisterPrefs(registry); |
| 41 } | 41 } |
| 42 | 42 |
| 43 scoped_ptr<KeyedService> AccountTrackerServiceFactory::BuildServiceInstanceFor( | 43 std::unique_ptr<KeyedService> |
| 44 AccountTrackerServiceFactory::BuildServiceInstanceFor( |
| 44 web::BrowserState* context) const { | 45 web::BrowserState* context) const { |
| 45 ios::ChromeBrowserState* chrome_browser_state = | 46 ios::ChromeBrowserState* chrome_browser_state = |
| 46 ios::ChromeBrowserState::FromBrowserState(context); | 47 ios::ChromeBrowserState::FromBrowserState(context); |
| 47 scoped_ptr<AccountTrackerService> service(new AccountTrackerService()); | 48 std::unique_ptr<AccountTrackerService> service(new AccountTrackerService()); |
| 48 service->Initialize( | 49 service->Initialize( |
| 49 SigninClientFactory::GetForBrowserState(chrome_browser_state)); | 50 SigninClientFactory::GetForBrowserState(chrome_browser_state)); |
| 50 return std::move(service); | 51 return std::move(service); |
| 51 } | 52 } |
| 52 | 53 |
| 53 } // namespace ios | 54 } // namespace ios |
| OLD | NEW |