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/gaia_cookie_manager_service_factory.h" | 5 #include "ios/chrome/browser/signin/gaia_cookie_manager_service_factory.h" |
6 | 6 |
| 7 #include "base/memory/ptr_util.h" |
7 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
8 #include "components/keyed_service/core/service_access_type.h" | 9 #include "components/keyed_service/core/service_access_type.h" |
9 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
10 #include "components/signin/core/browser/gaia_cookie_manager_service.h" | 11 #include "components/signin/core/browser/gaia_cookie_manager_service.h" |
11 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
12 #include "google_apis/gaia/gaia_constants.h" | 13 #include "google_apis/gaia/gaia_constants.h" |
13 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
14 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" | 15 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" |
15 #include "ios/chrome/browser/signin/signin_client_factory.h" | 16 #include "ios/chrome/browser/signin/signin_client_factory.h" |
16 | 17 |
(...skipping 15 matching lines...) Expand all Loading... |
32 return static_cast<GaiaCookieManagerService*>( | 33 return static_cast<GaiaCookieManagerService*>( |
33 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 34 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
34 } | 35 } |
35 | 36 |
36 // static | 37 // static |
37 GaiaCookieManagerServiceFactory* | 38 GaiaCookieManagerServiceFactory* |
38 GaiaCookieManagerServiceFactory::GetInstance() { | 39 GaiaCookieManagerServiceFactory::GetInstance() { |
39 return base::Singleton<GaiaCookieManagerServiceFactory>::get(); | 40 return base::Singleton<GaiaCookieManagerServiceFactory>::get(); |
40 } | 41 } |
41 | 42 |
42 scoped_ptr<KeyedService> | 43 std::unique_ptr<KeyedService> |
43 GaiaCookieManagerServiceFactory::BuildServiceInstanceFor( | 44 GaiaCookieManagerServiceFactory::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 return make_scoped_ptr(new GaiaCookieManagerService( | 48 return base::WrapUnique(new GaiaCookieManagerService( |
48 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state), | 49 OAuth2TokenServiceFactory::GetForBrowserState(chrome_browser_state), |
49 GaiaConstants::kChromeSource, | 50 GaiaConstants::kChromeSource, |
50 SigninClientFactory::GetForBrowserState(chrome_browser_state))); | 51 SigninClientFactory::GetForBrowserState(chrome_browser_state))); |
51 } | 52 } |
52 | 53 |
53 } // namespace ios | 54 } // namespace ios |
OLD | NEW |