Index: chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h |
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h b/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h |
index cb8d0898b51b0bc76980c7d424af7b19c5774a5b..f5d1019589dde4efc50b5df7476c779a66ecf936 100644 |
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h |
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h |
@@ -8,20 +8,21 @@ |
#if defined(OS_CHROMEOS) |
#include "base/values.h" |
-#include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" |
#include "chrome/common/extensions/api/experimental_bluetooth.h" |
+#include "device/bluetooth/bluetooth_device.h" |
namespace extensions { |
namespace api { |
namespace experimental_bluetooth { |
-// Fill in a Device object from a chromeos::BluetoothDevice. |
+// Fill in a Device object from a BluetoothDevice. |
void BluetoothDeviceToApiDevice( |
- const chromeos::BluetoothDevice& device, |
+ const bluetooth::BluetoothDevice& device, |
Device* out); |
// The caller takes ownership of the returned pointer. |
-base::Value* BluetoothDeviceToValue(const chromeos::BluetoothDevice& device); |
+base::Value* BluetoothDeviceToValue( |
+ const bluetooth::BluetoothDevice& device); |
} // namespace experimental_bluetooth |
} // namespace api |