OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" |
| 6 |
5 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
6 #include "chrome/browser/signin/chrome_signin_client_factory.h" | 8 #include "chrome/browser/signin/chrome_signin_client_factory.h" |
7 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h" | 9 #include "chrome/browser/signin/fake_profile_oauth2_token_service.h" |
8 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" | |
9 #include "chrome/browser/signin/signin_error_controller_factory.h" | 10 #include "chrome/browser/signin/signin_error_controller_factory.h" |
10 | 11 |
11 // TODO(blundell): Should these be namespaced? | 12 // TODO(blundell): Should these be namespaced? |
12 KeyedService* BuildFakeProfileOAuth2TokenService( | 13 scoped_ptr<KeyedService> BuildFakeProfileOAuth2TokenService( |
13 content::BrowserContext* context) { | 14 content::BrowserContext* context) { |
14 Profile* profile = Profile::FromBrowserContext(context); | 15 Profile* profile = Profile::FromBrowserContext(context); |
15 FakeProfileOAuth2TokenService* service = new FakeProfileOAuth2TokenService(); | 16 scoped_ptr<FakeProfileOAuth2TokenService> service( |
| 17 new FakeProfileOAuth2TokenService()); |
16 service->Initialize( | 18 service->Initialize( |
17 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile), | 19 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile), |
18 SigninErrorControllerFactory::GetInstance()->GetForProfile(profile)); | 20 SigninErrorControllerFactory::GetInstance()->GetForProfile(profile)); |
19 return service; | 21 return service.Pass(); |
20 } | 22 } |
21 | 23 |
22 KeyedService* BuildAutoIssuingFakeProfileOAuth2TokenService( | 24 scoped_ptr<KeyedService> BuildAutoIssuingFakeProfileOAuth2TokenService( |
23 content::BrowserContext* context) { | 25 content::BrowserContext* context) { |
24 Profile* profile = Profile::FromBrowserContext(context); | 26 Profile* profile = Profile::FromBrowserContext(context); |
25 FakeProfileOAuth2TokenService* service = new FakeProfileOAuth2TokenService(); | 27 scoped_ptr<FakeProfileOAuth2TokenService> service( |
| 28 new FakeProfileOAuth2TokenService()); |
26 service->set_auto_post_fetch_response_on_message_loop(true); | 29 service->set_auto_post_fetch_response_on_message_loop(true); |
27 service->Initialize( | 30 service->Initialize( |
28 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile), | 31 ChromeSigninClientFactory::GetInstance()->GetForProfile(profile), |
29 SigninErrorControllerFactory::GetInstance()->GetForProfile(profile)); | 32 SigninErrorControllerFactory::GetInstance()->GetForProfile(profile)); |
30 return service; | 33 return service.Pass(); |
31 } | 34 } |
OLD | NEW |