| Index: device/bluetooth/bluetooth_adapter.h
|
| diff --git a/device/bluetooth/bluetooth_adapter.h b/device/bluetooth/bluetooth_adapter.h
|
| index 9323ff724847a0116f6a797e0753bca68b39da48..fcd67b51909c0e30a5f80a7e81987099faa61869 100644
|
| --- a/device/bluetooth/bluetooth_adapter.h
|
| +++ b/device/bluetooth/bluetooth_adapter.h
|
| @@ -22,8 +22,6 @@ class BluetoothDiscoverySession;
|
| class BluetoothSocket;
|
| class BluetoothUUID;
|
|
|
| -struct BluetoothOutOfBandPairingData;
|
| -
|
| // BluetoothAdapter represents a local Bluetooth adapter which may be used to
|
| // interact with remote Bluetooth devices. As well as providing support for
|
| // determining whether an adapter is present and whether the radio is powered,
|
| @@ -85,11 +83,6 @@ class BluetoothAdapter : public base::RefCounted<BluetoothAdapter> {
|
| // called, in the success case the callback is simply not called.
|
| typedef base::Closure ErrorCallback;
|
|
|
| - // The BluetoothOutOfBandPairingDataCallback is used to return
|
| - // BluetoothOutOfBandPairingData to the caller.
|
| - typedef base::Callback<void(const BluetoothOutOfBandPairingData& data)>
|
| - BluetoothOutOfBandPairingDataCallback;
|
| -
|
| // The InitCallback is used to trigger a callback after asynchronous
|
| // initialization, if initialization is asynchronous on the platform.
|
| typedef base::Callback<void()> InitCallback;
|
| @@ -193,11 +186,6 @@ class BluetoothAdapter : public base::RefCounted<BluetoothAdapter> {
|
| virtual BluetoothDevice* GetDevice(const std::string& address);
|
| virtual const BluetoothDevice* GetDevice(const std::string& address) const;
|
|
|
| - // Requests the local Out Of Band pairing data.
|
| - virtual void ReadLocalOutOfBandPairingData(
|
| - const BluetoothOutOfBandPairingDataCallback& callback,
|
| - const ErrorCallback& error_callback) = 0;
|
| -
|
| // Possible priorities for AddPairingDelegate(), low is intended for
|
| // permanent UI and high is intended for interactive UI or applications.
|
| enum PairingDelegatePriority {
|
|
|