Auto merge of #11028 - szeged:webbluetooth, r=jdm

Remove BluetoothDevice members

Five of the BluetoothDevice members has been deleted in the spec:
8d148ba3c3

These were the vendorID, vendorIDSource, deviceClass, productID, productVersion.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11028)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-06 17:07:55 -07:00
commit a153e20c55
6 changed files with 5 additions and 93 deletions

View file

@ -34,11 +34,6 @@
log('Found a device!');
log('> Name: ' + device.name);
log('> Id: ' + device.id);
log('> Device Class: ' + device.deviceClass);
log('> Vendor Id Source: ' + device.vendorIDSource);
log('> Vendor Id: ' + device.vendorID);
log('> Product Id: ' + device.productID);
log('> Product Version: ' + device.productVersion);
log('> Appearance: ' + device.adData.appearance);
log('> Tx Power: ' + device.adData.txPower + ' dBm');
log('> RSSI: ' + device.adData.rssi + ' dBm');