| Index: chrome/browser/signin/fake_account_tracker_service.h
|
| diff --git a/chrome/browser/signin/fake_account_tracker_service.h b/chrome/browser/signin/fake_account_tracker_service.h
|
| index a30f9134d37562edc0cfeb33c31921d72a38c7dd..5008d512c86cfd3cc5f4214c0a38b8a0cf04841a 100644
|
| --- a/chrome/browser/signin/fake_account_tracker_service.h
|
| +++ b/chrome/browser/signin/fake_account_tracker_service.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_
|
| #define CHROME_BROWSER_SIGNIN_FAKE_ACCOUNT_TRACKER_SERVICE_H_
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "components/signin/core/browser/account_tracker_service.h"
|
|
|
| class KeyedService;
|
| @@ -18,7 +19,7 @@ class BrowserContext;
|
| // to prevent AccountTrackerService from sending network requests.
|
| class FakeAccountTrackerService : public AccountTrackerService {
|
| public:
|
| - static KeyedService* Build(content::BrowserContext* context);
|
| + static scoped_ptr<KeyedService> Build(content::BrowserContext* context);
|
|
|
| void FakeUserInfoFetchSuccess(const std::string& email,
|
| const std::string& gaia,
|
|
|