| Index: trunk/src/device/bluetooth/bluetooth_low_energy_win.cc
|
| ===================================================================
|
| --- trunk/src/device/bluetooth/bluetooth_low_energy_win.cc (revision 282293)
|
| +++ trunk/src/device/bluetooth/bluetooth_low_energy_win.cc (working copy)
|
| @@ -322,11 +322,6 @@
|
| }
|
|
|
| device_info->connected = !(value->AsUint32() & DN_DEVICE_DISCONNECTED);
|
| - // Windows 8 exposes BLE devices only if they are visible and paired. This
|
| - // might change in the future if Windows offers a public API for discovering
|
| - // and pairing BLE devices.
|
| - device_info->visible = true;
|
| - device_info->authenticated = true;
|
| return true;
|
| }
|
|
|
| @@ -524,7 +519,7 @@
|
| }
|
|
|
| BluetoothLowEnergyDeviceInfo::BluetoothLowEnergyDeviceInfo()
|
| - : visible(false), authenticated(false), connected(false) {
|
| + : connected(false) {
|
| address.ullLong = BLUETOOTH_NULL_ADDRESS;
|
| }
|
|
|
|
|