| Index: device/bluetooth/bluetooth_device.cc
|
| diff --git a/device/bluetooth/bluetooth_device.cc b/device/bluetooth/bluetooth_device.cc
|
| index fe21162e9335f453e377960f70731698ea67fcb6..c8c77116229662ff16cf0bab7f88130242a0d31d 100644
|
| --- a/device/bluetooth/bluetooth_device.cc
|
| +++ b/device/bluetooth/bluetooth_device.cc
|
| @@ -22,6 +22,14 @@ BluetoothDevice::~BluetoothDevice() {
|
| STLDeleteValues(&gatt_services_);
|
| }
|
|
|
| +bool BluetoothDevice::SupportsLowEnergy() const {
|
| + return supports_low_energy_;
|
| +}
|
| +
|
| +bool BluetoothDevice::SupportsClassic() const {
|
| + return supports_classic_;
|
| +}
|
| +
|
| BluetoothDevice::ConnectionInfo::ConnectionInfo()
|
| : rssi(kUnknownPower),
|
| transmit_power(kUnknownPower),
|
|
|