| Index: device/bluetooth/bluetooth_device.h
|
| diff --git a/device/bluetooth/bluetooth_device.h b/device/bluetooth/bluetooth_device.h
|
| index 3c17231a85c60433e66cb36a8262ad7aa1c9a745..a495b209cc55d33003863db713e182e9c18791a3 100644
|
| --- a/device/bluetooth/bluetooth_device.h
|
| +++ b/device/bluetooth/bluetooth_device.h
|
| @@ -23,8 +23,6 @@ class BluetoothProfile;
|
| class BluetoothSocket;
|
| class BluetoothUUID;
|
|
|
| -struct BluetoothOutOfBandPairingData;
|
| -
|
| // BluetoothDevice represents a remote Bluetooth device, both its properties and
|
| // capabilities as discovered by a local adapter and actions that may be
|
| // performed on the remove device such as pairing, connection and disconnection.
|
| @@ -395,19 +393,6 @@ class BluetoothDevice {
|
| const ConnectToServiceCallback& callback,
|
| const ConnectToServiceErrorCallback& error_callback) = 0;
|
|
|
| - // Sets the Out Of Band pairing data for this device to |data|. Exactly one
|
| - // of |callback| or |error_callback| will be run.
|
| - virtual void SetOutOfBandPairingData(
|
| - const BluetoothOutOfBandPairingData& data,
|
| - const base::Closure& callback,
|
| - const ErrorCallback& error_callback) = 0;
|
| -
|
| - // Clears the Out Of Band pairing data for this device. Exactly one of
|
| - // |callback| or |error_callback| will be run.
|
| - virtual void ClearOutOfBandPairingData(
|
| - const base::Closure& callback,
|
| - const ErrorCallback& error_callback) = 0;
|
| -
|
| // Starts monitoring the connection properties, RSSI and TX power. These
|
| // properties will be tracked, and updated when their values change. Exactly
|
| // one of |callback| or |error_callback| will be run.
|
|
|