| Index: chrome/browser/signin/fake_profile_oauth2_token_service_builder.h
|
| diff --git a/chrome/browser/signin/fake_profile_oauth2_token_service_builder.h b/chrome/browser/signin/fake_profile_oauth2_token_service_builder.h
|
| index 21672b662fc024efc78cecdbfd65adeee3f5ab71..d9cd4bdab7deed29d9d72b464841a7a3c939056a 100644
|
| --- a/chrome/browser/signin/fake_profile_oauth2_token_service_builder.h
|
| +++ b/chrome/browser/signin/fake_profile_oauth2_token_service_builder.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CHROME_BROWSER_SIGNIN_FAKE_PROFILE_OAUTH2_TOKEN_SERVICE_BUILDER_H_
|
| #define CHROME_BROWSER_SIGNIN_FAKE_PROFILE_OAUTH2_TOKEN_SERVICE_BUILDER_H_
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| +
|
| class KeyedService;
|
|
|
| namespace content {
|
| @@ -14,14 +16,14 @@ class BrowserContext;
|
| // Helper function to be used with
|
| // BrowserContextKeyedServiceFactory::SetTestingFactory() that returns a
|
| // FakeProfileOAuth2TokenService object.
|
| -KeyedService* BuildFakeProfileOAuth2TokenService(
|
| +scoped_ptr<KeyedService> BuildFakeProfileOAuth2TokenService(
|
| content::BrowserContext* context);
|
|
|
| // Helper function to be used with
|
| // BrowserContextKeyedServiceFactory::SetTestingFactory() that creates a
|
| // FakeProfileOAuth2TokenService object that posts fetch responses on the
|
| // current message loop.
|
| -KeyedService* BuildAutoIssuingFakeProfileOAuth2TokenService(
|
| +scoped_ptr<KeyedService> BuildAutoIssuingFakeProfileOAuth2TokenService(
|
| content::BrowserContext* context);
|
|
|
| #endif // CHROME_BROWSER_SIGNIN_FAKE_PROFILE_OAUTH2_TOKEN_SERVICE_BUILDER_H_
|
|
|