| Index: ash/common/system/date/tray_date.cc
|
| diff --git a/ash/common/system/date/tray_date.cc b/ash/common/system/date/tray_date.cc
|
| index 2ba6d6d2a4f79ef8e9674a8d542e05f63949ea00..75bcceecf82f13c2ddff847991baa53fa58e6a46 100644
|
| --- a/ash/common/system/date/tray_date.cc
|
| +++ b/ash/common/system/date/tray_date.cc
|
| @@ -11,7 +11,7 @@
|
| #include "ash/common/system/tray/system_tray.h"
|
| #include "ash/common/system/tray/system_tray_notifier.h"
|
| #include "ash/common/system/tray/tray_item_view.h"
|
| -#include "ash/common/wm_shell.h"
|
| +#include "ash/shell.h"
|
|
|
| namespace ash {
|
|
|
| @@ -21,11 +21,11 @@ TrayDate::TrayDate(SystemTray* system_tray)
|
| default_view_(NULL),
|
| login_status_(LoginStatus::NOT_LOGGED_IN),
|
| system_clock_observer_(new SystemClockObserver()) {
|
| - WmShell::Get()->system_tray_notifier()->AddClockObserver(this);
|
| + Shell::Get()->system_tray_notifier()->AddClockObserver(this);
|
| }
|
|
|
| TrayDate::~TrayDate() {
|
| - WmShell::Get()->system_tray_notifier()->RemoveClockObserver(this);
|
| + Shell::Get()->system_tray_notifier()->RemoveClockObserver(this);
|
| }
|
|
|
| views::View* TrayDate::GetHelpButtonView() const {
|
|
|