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

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

Issue 12077030: Allow signin to continue even if sync is disabled by policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup after self-review Created 7 years, 11 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/about_signin_internals.cc
diff --git a/chrome/browser/signin/about_signin_internals.cc b/chrome/browser/signin/about_signin_internals.cc
index e75d3ef53c9a436cd90e1aa04ea566a708adbc68..e3aed3c47807adc3919364e334fc3c2dfb30f1bb 100644
--- a/chrome/browser/signin/about_signin_internals.cc
+++ b/chrome/browser/signin/about_signin_internals.cc
@@ -204,9 +204,9 @@ void AboutSigninInternals::Initialize(Profile* profile) {
}
void AboutSigninInternals::Shutdown() {
- SigninManagerFactory::GetForProfile(profile_)->
+ SigninManager* signin = SigninManagerFactory::GetForProfile(profile_)->
RemoveSigninDiagnosticsObserver(this);
- TokenServiceFactory::GetForProfile(profile_)->
+ TokenService* token = TokenServiceFactory::GetForProfile(profile_)->
RemoveSigninDiagnosticsObserver(this);
}

Powered by Google App Engine
This is Rietveld 408576698