| Index: chrome/browser/ui/ash/ash_init.cc
|
| diff --git a/chrome/browser/ui/ash/ash_init.cc b/chrome/browser/ui/ash/ash_init.cc
|
| index 71e198034ccdd845cb8e415fc05be0f100caa3b8..8fbecadb5dd2460a74727da126c1b3733162f271 100644
|
| --- a/chrome/browser/ui/ash/ash_init.cc
|
| +++ b/chrome/browser/ui/ash/ash_init.cc
|
| @@ -24,7 +24,7 @@
|
| #include "ui/aura/root_window.h"
|
|
|
| #if defined(OS_CHROMEOS)
|
| -#include "base/chromeos/chromeos_version.h"
|
| +#include "base/sys_info.h"
|
| #include "chrome/browser/ui/ash/ime_controller_chromeos.h"
|
| #include "chrome/browser/ui/ash/volume_controller_chromeos.h"
|
| #include "chromeos/chromeos_switches.h"
|
| @@ -44,7 +44,7 @@ bool ShouldOpenAshOnStartup() {
|
|
|
| void OpenAsh() {
|
| #if defined(OS_CHROMEOS)
|
| - if (base::chromeos::IsRunningOnChromeOS()) {
|
| + if (base::SysInfo::IsRunningOnChromeOS()) {
|
| // Hides the cursor outside of the Aura root window. The cursor will be
|
| // drawn within the Aura root window, and it'll remain hidden after the
|
| // Aura window is closed.
|
|
|