Index: components/arc/bluetooth/arc_bluetooth_bridge.h |
diff --git a/components/arc/bluetooth/arc_bluetooth_bridge.h b/components/arc/bluetooth/arc_bluetooth_bridge.h |
index f8b7150c768c09c130b7ecb9306dfe379a473a7b..9d6a4e53f2c153b126f043deac0503cb110d9540 100644 |
--- a/components/arc/bluetooth/arc_bluetooth_bridge.h |
+++ b/components/arc/bluetooth/arc_bluetooth_bridge.h |
@@ -26,6 +26,7 @@ |
#include "device/bluetooth/bluetooth_remote_gatt_descriptor.h" |
#include "device/bluetooth/bluetooth_remote_gatt_service.h" |
#include "device/bluetooth/bluez/bluetooth_adapter_bluez.h" |
+#include "device/bluetooth/bluez/bluetooth_service_record_bluez.h" |
rkc
2016/07/27 01:34:56
Not needed?
Miao
2016/08/10 15:32:20
Done.
|
#include "mojo/public/cpp/bindings/binding.h" |
namespace arc { |
@@ -265,6 +266,14 @@ class ArcBluetoothBridge |
mojo::Array<uint8_t> value, |
const SendIndicationCallback& callback) override; |
+ // Bluetooth Mojo host interface - Bluetooth SDP functions |
+ void GetSdpRecords(mojom::BluetoothAddressPtr remote_addr, |
+ const GetSdpRecordsCallback& callback) override; |
+ void CreateSdpRecord(mojom::BluetoothSdpRecordPtr record, |
+ const CreateSdpRecordCallback& callback) override; |
+ void RemoveSdpRecord(uint32_t service_handle, |
+ const RemoveSdpRecordCallback& callback) override; |
+ |
// Chrome observer callbacks |
void OnPoweredOn( |
const base::Callback<void(mojom::BluetoothAdapterState)>& callback) const; |