Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h |
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h |
index db673003c9d92a6b1dcaac6cd8c9ee023a010cb0..54d4ae627a8b408b32553da11633a95f9df7fab8 100644 |
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h |
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h |
@@ -10,17 +10,17 @@ |
namespace blink { |
struct WebBluetoothGATTRemoteServer { |
- WebBluetoothGATTRemoteServer(const WebString& deviceInstanceID, |
+ WebBluetoothGATTRemoteServer(const WebString& deviceId, |
bool connected) |
- : deviceInstanceID(deviceInstanceID) |
+ : deviceId(deviceId) |
, connected(connected) |
{ |
} |
// Members corresponding to BluetoothGATTRemoteServer attributes as |
// specified in the IDL. |
- const WebString deviceInstanceID; |
- const bool connected; |
+ const WebString deviceId; |
+ bool connected; |
}; |
} // namespace blink |