| 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 f8dda09fa2e4b07035b90d968cad6dec9550c1f8..081c5c338906c9e050ef8b63dcc996809d17c921 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/brightness_controller_chromeos.h"
|
| #include "chrome/browser/ui/ash/ime_controller_chromeos.h"
|
| #include "chrome/browser/ui/ash/volume_controller_chromeos.h"
|
| @@ -45,7 +45,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.
|
|
|