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 2c2dfccc5b2f343c2b98f3b4d2a1f4516901513c..ec77ffbc14e042e2da31b5a0825029b15a92e219 100644 |
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h |
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDevice.h |
@@ -14,13 +14,9 @@ namespace blink { |
struct WebBluetoothDevice { |
WebBluetoothDevice(const WebString& id, |
const WebString& name, |
- int8_t txPower, |
- int8_t rssi, |
const WebVector<WebString>& uuids) |
: id(id) |
, name(name) |
- , txPower(txPower) |
- , rssi(rssi) |
, uuids(uuids) |
{ |
} |
@@ -28,10 +24,6 @@ struct WebBluetoothDevice { |
// Members corresponding to BluetoothDevice attributes as specified in IDL. |
const WebString id; |
const WebString name; |
- // Powers: |
- // A value of 127 denotes an invalid power. |
- const int8_t txPower; |
- const int8_t rssi; |
const WebVector<WebString> uuids; |
}; |