| Index: chrome/browser/sync/test/integration/profile_sync_service_harness.cc
|
| diff --git a/chrome/browser/sync/test/integration/profile_sync_service_harness.cc b/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
|
| index 756d7ac99081b1f033dacfe9e03dd75adbd405ec..10a03f0b4ee7582602062936cffd83f874b7298e 100644
|
| --- a/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
|
| +++ b/chrome/browser/sync/test/integration/profile_sync_service_harness.cc
|
| @@ -155,7 +155,7 @@
|
|
|
| // Tell the sync service that setup is in progress so we don't start syncing
|
| // until we've finished configuration.
|
| - sync_blocker_ = service()->GetSetupInProgressHandle();
|
| + service()->SetSetupInProgress(true);
|
|
|
| DCHECK(!username_.empty());
|
| if (signin_type_ == SigninType::UI_SIGNIN) {
|
| @@ -305,7 +305,7 @@
|
| }
|
|
|
| void ProfileSyncServiceHarness::FinishSyncSetup() {
|
| - sync_blocker_.reset();
|
| + service()->SetSetupInProgress(false);
|
| service()->SetFirstSetupComplete();
|
| }
|
|
|
|
|