| Index: chrome/browser/ui/sync/one_click_signin_helper_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/ui/sync/one_click_signin_helper_unittest.cc (revision 150390)
|
| +++ chrome/browser/ui/sync/one_click_signin_helper_unittest.cc (working copy)
|
| @@ -35,8 +35,7 @@
|
|
|
| class SigninManagerMock : public FakeSigninManager {
|
| public:
|
| - explicit SigninManagerMock(Profile* profile)
|
| - : FakeSigninManager(profile) {}
|
| + SigninManagerMock() {}
|
| MOCK_CONST_METHOD1(IsAllowedUsername, bool(const std::string& username));
|
| };
|
|
|
| @@ -79,7 +78,7 @@
|
| }
|
|
|
| static ProfileKeyedService* BuildSigninManagerMock(Profile* profile) {
|
| - return new SigninManagerMock(profile);
|
| + return new SigninManagerMock();
|
| }
|
|
|
| content::WebContents* OneClickSigninHelperTest::CreateMockWebContents(
|
|
|