| Index: components/signin/core/browser/account_reconcilor.cc
|
| diff --git a/components/signin/core/browser/account_reconcilor.cc b/components/signin/core/browser/account_reconcilor.cc
|
| index e4e2e3d4dd38cb4baebe23b73164a511ba7356bc..efe594db0e528b9791250382726747f2b511f1e3 100644
|
| --- a/components/signin/core/browser/account_reconcilor.cc
|
| +++ b/components/signin/core/browser/account_reconcilor.cc
|
| @@ -304,10 +304,9 @@ void AccountReconcilor::StartReconcile() {
|
| add_to_cookie_.clear();
|
| ValidateAccountsFromTokenService();
|
|
|
| - // TODO(mlerman): Call this only from within the GaiaCookieManagerService,
|
| - // once /ListAccounts is now called from that class instead of the
|
| - // reconcilor's GaiaAuthFetcher (which will be removed).
|
| - cookie_manager_service_->StartFetchingExternalCcResult();
|
| + GetAccountsFromCookie(base::Bind(
|
| + &AccountReconcilor::ContinueReconcileActionAfterGetGaiaAccounts,
|
| + base::Unretained(this)));
|
| }
|
|
|
| void AccountReconcilor::GetAccountsFromCookie(
|
| @@ -539,11 +538,3 @@ void AccountReconcilor::OnAddAccountToCookieCompleted(
|
| ScheduleStartReconcileIfChromeAccountsChanged();
|
| }
|
| }
|
| -
|
| -void AccountReconcilor::GetCheckConnectionInfoCompleted(bool succeeded) {
|
| - if (is_reconcile_started_) {
|
| - GetAccountsFromCookie(base::Bind(
|
| - &AccountReconcilor::ContinueReconcileActionAfterGetGaiaAccounts,
|
| - base::Unretained(this)));
|
| - }
|
| -}
|
|
|