| Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
|
| diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
|
| index 771f94b5391afa855ad4ebf306e26145df676980..2c2dfccc5b2f343c2b98f3b4d2a1f4516901513c 100644
|
| --- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
|
| +++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h
|
| @@ -12,31 +12,15 @@ namespace blink {
|
|
|
| // Information describing a Bluetooth device provided by the platform.
|
| struct WebBluetoothDevice {
|
| - enum class VendorIDSource {
|
| - Unknown,
|
| - Bluetooth,
|
| - USB
|
| - };
|
| -
|
| WebBluetoothDevice(const WebString& id,
|
| const WebString& name,
|
| int8_t txPower,
|
| int8_t rssi,
|
| - int32_t deviceClass,
|
| - VendorIDSource vendorIDSource,
|
| - uint16_t vendorID,
|
| - uint16_t productID,
|
| - uint16_t productVersion,
|
| const WebVector<WebString>& uuids)
|
| : id(id)
|
| , name(name)
|
| , txPower(txPower)
|
| , rssi(rssi)
|
| - , deviceClass(deviceClass)
|
| - , vendorIDSource(vendorIDSource)
|
| - , vendorID(vendorID)
|
| - , productID(productID)
|
| - , productVersion(productVersion)
|
| , uuids(uuids)
|
| {
|
| }
|
| @@ -48,11 +32,6 @@ struct WebBluetoothDevice {
|
| // A value of 127 denotes an invalid power.
|
| const int8_t txPower;
|
| const int8_t rssi;
|
| - const int32_t deviceClass;
|
| - const VendorIDSource vendorIDSource;
|
| - const uint16_t vendorID;
|
| - const uint16_t productID;
|
| - const uint16_t productVersion;
|
| const WebVector<WebString> uuids;
|
| };
|
|
|
|
|