Chromium Code Reviews| Index: chrome/browser/chromeos/policy/device_system_use_24hour_clock_browsertest.cc |
| diff --git a/chrome/browser/chromeos/policy/device_system_use_24hour_clock_browsertest.cc b/chrome/browser/chromeos/policy/device_system_use_24hour_clock_browsertest.cc |
| index b69cc595fa8e51793beffdaaf4dee3e1d53ac550..ff7daa795b6bd9fe82f3e76b7de2fa588b240a9b 100644 |
| --- a/chrome/browser/chromeos/policy/device_system_use_24hour_clock_browsertest.cc |
| +++ b/chrome/browser/chromeos/policy/device_system_use_24hour_clock_browsertest.cc |
| @@ -2,6 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "ash/common/wm_shell.h" |
| #include "ash/shell.h" |
| #include "ash/system/date/date_default_view.h" |
| #include "ash/system/date/date_view.h" |
| @@ -66,7 +67,7 @@ class SystemUse24HourClockPolicyTest |
| static bool GetSystemTrayDelegateShouldUse24HourClock() { |
| chromeos::SystemTrayDelegateChromeOS* tray_delegate = |
| static_cast<chromeos::SystemTrayDelegateChromeOS*>( |
| - ash::Shell::GetInstance()->system_tray_delegate()); |
| + ash::WmShell::Get()->system_tray_delegate()); |
| return tray_delegate->GetShouldUse24HourClockForTesting(); |
|
msw
2016/06/10 18:48:21
aside: calls into g_browser_process under the hood
|
| } |