| Index: chrome/browser/chromeos/dbus/bluetooth_node_client.cc
|
| diff --git a/chrome/browser/chromeos/dbus/bluetooth_node_client.cc b/chrome/browser/chromeos/dbus/bluetooth_node_client.cc
|
| index ee74034ecadb54be9fdea8550c01d5b2eb68c157..07521aa9b5688be995647015869e6574cb864950 100644
|
| --- a/chrome/browser/chromeos/dbus/bluetooth_node_client.cc
|
| +++ b/chrome/browser/chromeos/dbus/bluetooth_node_client.cc
|
| @@ -7,11 +7,11 @@
|
| #include <map>
|
|
|
| #include "base/bind.h"
|
| +#include "base/chromeos/chromeos_version.h"
|
| #include "base/logging.h"
|
| #include "base/stl_util.h"
|
| #include "chrome/browser/chromeos/dbus/bluetooth_device_client.h"
|
| #include "chrome/browser/chromeos/dbus/bluetooth_property.h"
|
| -#include "chrome/browser/chromeos/system/runtime_environment.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "dbus/object_path.h"
|
| @@ -192,7 +192,7 @@ BluetoothNodeClient::~BluetoothNodeClient() {
|
| BluetoothNodeClient* BluetoothNodeClient::Create(
|
| dbus::Bus* bus,
|
| BluetoothDeviceClient* adapter_client) {
|
| - if (system::runtime_environment::IsRunningOnChromeOS()) {
|
| + if (base::chromeos::IsRunningOnChromeOS()) {
|
| return new BluetoothNodeClientImpl(bus, adapter_client);
|
| } else {
|
| return new BluetoothNodeClientStubImpl();
|
|
|