| Index: ash/common/system/user/user_view.cc
|
| diff --git a/ash/common/system/user/user_view.cc b/ash/common/system/user/user_view.cc
|
| index 748a0fa8f76b3cc1ddc3a00d4d06464023de6163..3f20a7fdf00fa41fe997590fc2355832be32e21c 100644
|
| --- a/ash/common/system/user/user_view.cc
|
| +++ b/ash/common/system/user/user_view.cc
|
| @@ -269,7 +269,7 @@ void UserView::ButtonPressed(views::Button* sender, const ui::Event& event) {
|
| if (sender == logout_button_) {
|
| WmShell::Get()->RecordUserMetricsAction(UMA_STATUS_AREA_SIGN_OUT);
|
| RemoveAddUserMenuOption();
|
| - WmShell::Get()->system_tray_controller()->SignOut();
|
| + Shell::Get()->system_tray_controller()->SignOut();
|
| } else if (sender == user_card_view_ &&
|
| IsMultiProfileSupportedAndUserActive()) {
|
| if (IsActiveUser()) {
|
| @@ -286,7 +286,7 @@ void UserView::ButtonPressed(views::Button* sender, const ui::Event& event) {
|
| RemoveAddUserMenuOption();
|
| // Let the user add another account to the session.
|
| MultiProfileUMA::RecordSigninUser(MultiProfileUMA::SIGNIN_USER_BY_TRAY);
|
| - WmShell::Get()->system_tray_delegate()->ShowUserLogin();
|
| + Shell::Get()->system_tray_delegate()->ShowUserLogin();
|
| owner_->system_tray()->CloseSystemBubble();
|
| } else {
|
| NOTREACHED();
|
|
|