| Index: device/bluetooth/bluetooth_device_chromeos.h
|
| diff --git a/device/bluetooth/bluetooth_device_chromeos.h b/device/bluetooth/bluetooth_device_chromeos.h
|
| index f8846cdb37e3fbb012da23aa0a38a4514adeb514..1b776e9a26847ec28072dd6843ea45a6915c1c06 100644
|
| --- a/device/bluetooth/bluetooth_device_chromeos.h
|
| +++ b/device/bluetooth/bluetooth_device_chromeos.h
|
| @@ -11,11 +11,11 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/sequenced_task_runner.h"
|
| -#include "chromeos/dbus/bluetooth_device_client.h"
|
| -#include "chromeos/dbus/bluetooth_gatt_service_client.h"
|
| #include "dbus/object_path.h"
|
| #include "device/bluetooth/bluetooth_device.h"
|
| #include "device/bluetooth/bluetooth_export.h"
|
| +#include "device/bluetooth/dbus/bluetooth_device_client.h"
|
| +#include "device/bluetooth/dbus/bluetooth_gatt_service_client.h"
|
|
|
| namespace device {
|
| class BluetoothSocketThread;
|
| @@ -35,7 +35,7 @@ class BluetoothPairingChromeOS;
|
| // thread.
|
| class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceChromeOS
|
| : public device::BluetoothDevice,
|
| - public BluetoothGattServiceClient::Observer {
|
| + public bluez::BluetoothGattServiceClient::Observer {
|
| public:
|
| // BluetoothDevice override
|
| uint32 GetBluetoothClass() const override;
|
| @@ -112,7 +112,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceChromeOS
|
| scoped_refptr<device::BluetoothSocketThread> socket_thread);
|
| ~BluetoothDeviceChromeOS() override;
|
|
|
| - // BluetoothGattServiceClient::Observer overrides.
|
| + // bluez::BluetoothGattServiceClient::Observer overrides.
|
| void GattServiceAdded(const dbus::ObjectPath& object_path) override;
|
| void GattServiceRemoved(const dbus::ObjectPath& object_path) override;
|
|
|
|
|