| 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 cebf74f7253c0ffba1431be1f69f9004ea8b885f..acd335182625c5072a0adf5e9f66d083856c3114 100644
|
| --- a/components/arc/bluetooth/arc_bluetooth_bridge.h
|
| +++ b/components/arc/bluetooth/arc_bluetooth_bridge.h
|
| @@ -24,6 +24,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"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
|
|
| namespace arc {
|
| @@ -190,6 +191,14 @@ class ArcBluetoothBridge
|
| void ReadRemoteRssi(mojom::BluetoothAddressPtr remote_addr,
|
| const ReadRemoteRssiCallback& 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;
|
|
|