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

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

Issue 196783002: Export a private webstore API to call into the new inline sign-in flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add API tests Created 6 years, 9 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/signin_tracker.cc
diff --git a/chrome/browser/signin/signin_tracker.cc b/chrome/browser/signin/signin_tracker.cc
index 2cac0804f9e5303e7cd5eabcec08defd53536503..c200ddfafb968ecd4943021c5efd334983bda3fc 100644
--- a/chrome/browser/signin/signin_tracker.cc
+++ b/chrome/browser/signin/signin_tracker.cc
@@ -56,6 +56,7 @@ void SigninTracker::GoogleSigninFailed(const GoogleServiceAuthError& error) {
}
void SigninTracker::OnRefreshTokenAvailable(const std::string& account_id) {
+ DLOG(WARNING) << "SigninTracker::OnRefreshTokenAvailable()";
// TODO: when OAuth2TokenService handles multi-login, this should check
// that |account_id| is the primary account before signalling success.
if (!switches::IsEnableWebBasedSignin()) {
@@ -80,5 +81,6 @@ void SigninTracker::OnRefreshTokenRevoked(const std::string& account_id) {
void SigninTracker::MergeSessionCompleted(
const std::string& account_id,
const GoogleServiceAuthError& error) {
+ DLOG(WARNING) << "SigninTracker::MergeSessionCompleted()";
observer_->MergeSessionComplete(error);
}

Powered by Google App Engine
This is Rietveld 408576698