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

Unified Diff: chrome/browser/profiles/gaia_info_update_service.h

Issue 502343002: Add account_id to signin manager notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@isauth
Patch Set: Fix android trybots Created 6 years, 4 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/profiles/gaia_info_update_service.h
diff --git a/chrome/browser/profiles/gaia_info_update_service.h b/chrome/browser/profiles/gaia_info_update_service.h
index 531241ffc8a1e6ba71e20219e60441ed4af0f84a..edb699aface47b9c8ad721ae94dbfc42abcdd7c7 100644
--- a/chrome/browser/profiles/gaia_info_update_service.h
+++ b/chrome/browser/profiles/gaia_info_update_service.h
@@ -52,9 +52,11 @@ class GAIAInfoUpdateService : public KeyedService,
void ScheduleNextUpdate();
// Overridden from SigninManagerBase::Observer:
- virtual void GoogleSigninSucceeded(const std::string& username,
+ virtual void GoogleSigninSucceeded(const std::string& account_id,
+ const std::string& username,
const std::string& password) OVERRIDE;
- virtual void GoogleSignedOut(const std::string& username) OVERRIDE;
+ virtual void GoogleSignedOut(const std::string& account_id,
+ const std::string& username) OVERRIDE;
Profile* profile_;
scoped_ptr<ProfileDownloader> profile_image_downloader_;
« no previous file with comments | « chrome/browser/policy/cloud/user_policy_signin_service_base.cc ('k') | chrome/browser/profiles/gaia_info_update_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698