| Index: ash/common/system/chromeos/enterprise/tray_enterprise.cc
|
| diff --git a/ash/common/system/chromeos/enterprise/tray_enterprise.cc b/ash/common/system/chromeos/enterprise/tray_enterprise.cc
|
| index 6083dfa908c41b1763282eda231cfff7eff590a1..e61304701af09447af7d9f804dc5c9adf40d42ee 100644
|
| --- a/ash/common/system/chromeos/enterprise/tray_enterprise.cc
|
| +++ b/ash/common/system/chromeos/enterprise/tray_enterprise.cc
|
| @@ -8,7 +8,6 @@
|
| #include "ash/common/system/tray/label_tray_view.h"
|
| #include "ash/common/system/tray/system_tray_delegate.h"
|
| #include "ash/common/system/tray/system_tray_notifier.h"
|
| -#include "ash/common/wm_shell.h"
|
| #include "ash/resources/grit/ash_resources.h"
|
| #include "ash/shell.h"
|
| #include "base/logging.h"
|
| @@ -18,11 +17,11 @@ namespace ash {
|
|
|
| TrayEnterprise::TrayEnterprise(SystemTray* system_tray)
|
| : SystemTrayItem(system_tray, UMA_ENTERPRISE), tray_view_(nullptr) {
|
| - WmShell::Get()->system_tray_notifier()->AddEnterpriseDomainObserver(this);
|
| + Shell::Get()->system_tray_notifier()->AddEnterpriseDomainObserver(this);
|
| }
|
|
|
| TrayEnterprise::~TrayEnterprise() {
|
| - WmShell::Get()->system_tray_notifier()->RemoveEnterpriseDomainObserver(this);
|
| + Shell::Get()->system_tray_notifier()->RemoveEnterpriseDomainObserver(this);
|
| }
|
|
|
| void TrayEnterprise::UpdateEnterpriseMessage() {
|
|
|