| Index: ash/common/system/chromeos/session/logout_button_tray.cc
|
| diff --git a/ash/common/system/chromeos/session/logout_button_tray.cc b/ash/common/system/chromeos/session/logout_button_tray.cc
|
| index 1bf1bc78aadb782d25b667cee3cf3327e4b81b22..25fdb936e121ec2c25ee09547726525b73728a53 100644
|
| --- a/ash/common/system/chromeos/session/logout_button_tray.cc
|
| +++ b/ash/common/system/chromeos/session/logout_button_tray.cc
|
| @@ -120,7 +120,7 @@ LogoutButtonTray::LogoutButtonTray(WmShelf* wm_shelf)
|
| }
|
| tray_container()->AddChildView(button_);
|
| if (!MaterialDesignController::IsShelfMaterial())
|
| - tray_container()->SetBorder(views::Border::NullBorder());
|
| + tray_container()->SetBorder(views::NullBorder());
|
| WmShell::Get()->system_tray_notifier()->AddLogoutButtonObserver(this);
|
| }
|
|
|
| @@ -134,7 +134,7 @@ void LogoutButtonTray::SetShelfAlignment(ShelfAlignment alignment) {
|
| UpdateButtonTextAndImage(login_status_, alignment);
|
| TrayBackgroundView::SetShelfAlignment(alignment);
|
| if (!MaterialDesignController::IsShelfMaterial())
|
| - tray_container()->SetBorder(views::Border::NullBorder());
|
| + tray_container()->SetBorder(views::NullBorder());
|
| }
|
|
|
| base::string16 LogoutButtonTray::GetAccessibleNameForTray() {
|
|
|