Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6239)

Unified Diff: chrome/browser/signin/fake_account_fetcher_service_builder.cc

Issue 1380103004: Delay fetching account info until OnRefreshTokensLoaded(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix iOs Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/signin/fake_account_fetcher_service_builder.cc
diff --git a/chrome/browser/signin/fake_account_fetcher_service_builder.cc b/chrome/browser/signin/fake_account_fetcher_service_builder.cc
index b40f18dd66033ca373c23cc7eb851676471bdc0c..d1f492b9ae091faf82df9390024e9d3290662a94 100644
--- a/chrome/browser/signin/fake_account_fetcher_service_builder.cc
+++ b/chrome/browser/signin/fake_account_fetcher_service_builder.cc
@@ -18,7 +18,6 @@ scoped_ptr<KeyedService> FakeAccountFetcherServiceBuilder::BuildForTests(
Profile* profile = Profile::FromBrowserContext(context);
service->Initialize(ChromeSigninClientFactory::GetForProfile(profile),
ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
- AccountTrackerServiceFactory::GetForProfile(profile),
- nullptr);
+ AccountTrackerServiceFactory::GetForProfile(profile));
return scoped_ptr<KeyedService>(service);
}

Powered by Google App Engine
This is Rietveld 408576698