| Index: chrome/browser/sync/sync_setup_wizard_unittest.cc
|
| diff --git a/chrome/browser/sync/sync_setup_wizard_unittest.cc b/chrome/browser/sync/sync_setup_wizard_unittest.cc
|
| index 90ccf02f07bddca8bf312cc88bc449fba4357ef0..90df4ab9c580b430f06c5417a080826b8aab212a 100644
|
| --- a/chrome/browser/sync/sync_setup_wizard_unittest.cc
|
| +++ b/chrome/browser/sync/sync_setup_wizard_unittest.cc
|
| @@ -90,10 +90,9 @@ class SigninManagerMock : public FakeSigninManager {
|
| // A PSS subtype to inject.
|
| class ProfileSyncServiceForWizardTest : public ProfileSyncService {
|
| public:
|
| - ProfileSyncServiceForWizardTest(ProfileSyncComponentsFactory* factory,
|
| - Profile* profile,
|
| + ProfileSyncServiceForWizardTest(Profile* profile,
|
| ProfileSyncService::StartBehavior behavior)
|
| - : ProfileSyncService(factory, profile, NULL, behavior),
|
| + : ProfileSyncService(NULL, profile, NULL, behavior),
|
| user_cancelled_dialog_(false),
|
| is_using_secondary_passphrase_(false),
|
| encrypt_everything_(false) {
|
| @@ -187,7 +186,7 @@ class TestingProfileWithSyncService : public TestingProfile {
|
| explicit TestingProfileWithSyncService(
|
| ProfileSyncService::StartBehavior behavior) {
|
| sync_service_.reset(new ProfileSyncServiceForWizardTest(
|
| - &factory_, this, behavior));
|
| + this, behavior));
|
| }
|
|
|
| virtual ProfileSyncService* GetProfileSyncService() {
|
|
|