| 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();
|
| }
|
|
|
|
|