| Index: chromeos/dbus/dbus_thread_manager.cc
|
| diff --git a/chromeos/dbus/dbus_thread_manager.cc b/chromeos/dbus/dbus_thread_manager.cc
|
| index 2dbe58df2753320184497afd917d8648aa9ad45f..f23599081b0ac126d0e4ebc0658a38d391b9da5a 100644
|
| --- a/chromeos/dbus/dbus_thread_manager.cc
|
| +++ b/chromeos/dbus/dbus_thread_manager.cc
|
| @@ -6,9 +6,9 @@
|
|
|
| #include <map>
|
|
|
| -#include "base/chromeos/chromeos_version.h"
|
| #include "base/command_line.h"
|
| #include "base/observer_list.h"
|
| +#include "base/sys_info.h"
|
| #include "base/threading/thread.h"
|
| #include "chromeos/chromeos_switches.h"
|
| #include "chromeos/dbus/bluetooth_adapter_client.h"
|
| @@ -421,7 +421,7 @@ void DBusThreadManager::Initialize() {
|
| CHECK(g_dbus_thread_manager == NULL);
|
| // Determine whether we use stub or real client implementations.
|
| DBusThreadManagerImpl* dbus_thread_manager_impl;
|
| - if (base::chromeos::IsRunningOnChromeOS()) {
|
| + if (base::SysInfo::IsRunningOnChromeOS()) {
|
| dbus_thread_manager_impl =
|
| new DBusThreadManagerImpl(REAL_DBUS_CLIENT_IMPLEMENTATION);
|
| VLOG(1) << "DBusThreadManager initialized for ChromeOS";
|
|
|