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

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

Issue 71723002: This is the second CL of several that will eventually replace TokenService with (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments Created 7 years, 1 month 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/signin_manager_base.cc
diff --git a/chrome/browser/signin/signin_manager_base.cc b/chrome/browser/signin/signin_manager_base.cc
index 86f112288edd5fd4e8507a4a47ecb773988aae2d..dd1dd978ce37cd203cec2f6a62f1a0490906df96 100644
--- a/chrome/browser/signin/signin_manager_base.cc
+++ b/chrome/browser/signin/signin_manager_base.cc
@@ -60,12 +60,6 @@ void SigninManagerBase::Initialize(Profile* profile, PrefService* local_state) {
}
void SigninManagerBase::InitTokenService() {
- // TokenService can be null for unit tests.
- TokenService* token_service = TokenServiceFactory::GetForProfile(profile_);
- if (token_service)
- token_service->Initialize(GaiaConstants::kChromeSource, profile_);
- // Note: ChromeOS will kick off TokenService::LoadTokensFromDB from
Andrew T Wilson (Slow) 2013/11/14 10:34:57 Should we get rid of InitTokenService() in SigninM
Roger Tawa OOO till Jul 10th 2013/11/14 17:04:08 Yes good point, done.
- // OAuthLoginManager once the rest of the Profile is fully initialized.
}
bool SigninManagerBase::IsInitialized() const {

Powered by Google App Engine
This is Rietveld 408576698