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

Unified Diff: chrome/browser/ui/app_list/app_list_view_delegate.cc

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/ui/app_list/app_list_view_delegate.cc
diff --git a/chrome/browser/ui/app_list/app_list_view_delegate.cc b/chrome/browser/ui/app_list/app_list_view_delegate.cc
index e99175c90ac48e684ce9ca82767f7abe5922066a..aefc78f93b1c5035d61c3abf1c71dd36c494e488 100644
--- a/chrome/browser/ui/app_list/app_list_view_delegate.cc
+++ b/chrome/browser/ui/app_list/app_list_view_delegate.cc
@@ -309,12 +309,14 @@ void AppListViewDelegate::GoogleSigninFailed(
SetUpProfileSwitcher();
}
-void AppListViewDelegate::GoogleSigninSucceeded(const std::string& username,
+void AppListViewDelegate::GoogleSigninSucceeded(const std::string& account_id,
+ const std::string& username,
const std::string& password) {
SetUpProfileSwitcher();
}
-void AppListViewDelegate::GoogleSignedOut(const std::string& username) {
+void AppListViewDelegate::GoogleSignedOut(const std::string& account_id,
+ const std::string& username) {
SetUpProfileSwitcher();
}
« no previous file with comments | « chrome/browser/ui/app_list/app_list_view_delegate.h ('k') | chrome/browser/ui/auto_login_infobar_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698