| 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/signin_client_factory.h" | 5 #include "ios/chrome/browser/signin/signin_client_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "components/keyed_service/core/service_access_type.h" | 9 #include "components/keyed_service/core/service_access_type.h" |
| 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 BrowserStateDependencyManager::GetInstance()) { | 30 BrowserStateDependencyManager::GetInstance()) { |
| 31 DependsOn(ios::SigninErrorControllerFactory::GetInstance()); | 31 DependsOn(ios::SigninErrorControllerFactory::GetInstance()); |
| 32 } | 32 } |
| 33 | 33 |
| 34 SigninClientFactory::~SigninClientFactory() {} | 34 SigninClientFactory::~SigninClientFactory() {} |
| 35 | 35 |
| 36 std::unique_ptr<KeyedService> SigninClientFactory::BuildServiceInstanceFor( | 36 std::unique_ptr<KeyedService> SigninClientFactory::BuildServiceInstanceFor( |
| 37 web::BrowserState* context) const { | 37 web::BrowserState* context) const { |
| 38 ios::ChromeBrowserState* chrome_browser_state = | 38 ios::ChromeBrowserState* chrome_browser_state = |
| 39 ios::ChromeBrowserState::FromBrowserState(context); | 39 ios::ChromeBrowserState::FromBrowserState(context); |
| 40 return base::WrapUnique(new SigninClientImpl( | 40 return base::MakeUnique<SigninClientImpl>( |
| 41 chrome_browser_state, | 41 chrome_browser_state, |
| 42 ios::SigninErrorControllerFactory::GetForBrowserState( | 42 ios::SigninErrorControllerFactory::GetForBrowserState( |
| 43 chrome_browser_state))); | 43 chrome_browser_state)); |
| 44 } | 44 } |
| OLD | NEW |