diff options
Diffstat (limited to 'chrome/browser/sync/profile_sync_service_harness.cc')
-rw-r--r-- | chrome/browser/sync/profile_sync_service_harness.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/profile_sync_service_harness.cc b/chrome/browser/sync/profile_sync_service_harness.cc index 5e4c33b..e337b51 100644 --- a/chrome/browser/sync/profile_sync_service_harness.cc +++ b/chrome/browser/sync/profile_sync_service_harness.cc @@ -171,7 +171,7 @@ bool ProfileSyncServiceHarness::SetupSync( // Tell the sync service that setup is in progress so we don't start syncing // until we've finished configuration. - service_->set_setup_in_progress(true); + service_->SetSetupInProgress(true); // Authenticate sync client using GAIA credentials. if (!CommandLine::ForCurrentProcess()->HasSwitch( @@ -238,7 +238,7 @@ bool ProfileSyncServiceHarness::SetupSync( } // Notify ProfileSyncService that we are done with configuration. - service_->set_setup_in_progress(false); + service_->SetSetupInProgress(false); // Indicate to the browser that sync setup is complete. service()->SetSyncSetupCompleted(); |