| Index: ash/common/system/user/tray_user_separator.cc
|
| diff --git a/ash/common/system/user/tray_user_separator.cc b/ash/common/system/user/tray_user_separator.cc
|
| index 445c550e54cc473a9f2279465aaaa518a9edb283..2082818246ceb97add0f5afc16ee148d19350c01 100644
|
| --- a/ash/common/system/user/tray_user_separator.cc
|
| +++ b/ash/common/system/user/tray_user_separator.cc
|
| @@ -13,10 +13,6 @@ namespace ash {
|
| TrayUserSeparator::TrayUserSeparator(SystemTray* system_tray)
|
| : SystemTrayItem(system_tray, UMA_NOT_RECORDED), separator_shown_(false) {}
|
|
|
| -views::View* TrayUserSeparator::CreateTrayView(LoginStatus status) {
|
| - return NULL;
|
| -}
|
| -
|
| views::View* TrayUserSeparator::CreateDefaultView(LoginStatus status) {
|
| if (status == LoginStatus::NOT_LOGGED_IN)
|
| return NULL;
|
| @@ -35,10 +31,6 @@ views::View* TrayUserSeparator::CreateDefaultView(LoginStatus status) {
|
| return new views::View();
|
| }
|
|
|
| -views::View* TrayUserSeparator::CreateDetailedView(LoginStatus status) {
|
| - return NULL;
|
| -}
|
| -
|
| void TrayUserSeparator::DestroyDefaultView() {
|
| separator_shown_ = false;
|
| }
|
|
|