Index: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
diff --git a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
index 5fa65d9cadb5636211e1c2145f7dcf9808ca43e1..1e4c34efdacc5bc15be737ee534eeb5702bb01df 100644 |
--- a/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
+++ b/third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h |
@@ -13,15 +13,12 @@ namespace blink { |
// Information provided by the platform to initialize BluetoothDevice objects |
// with attributes as specified in BluetoothDevice.idl. |
struct WebBluetoothDeviceInit { |
- WebBluetoothDeviceInit(const WebString& id, |
- const WebString& name, |
- const WebVector<WebString>& uuids) |
- : id(id), name(name), uuids(uuids) {} |
+ WebBluetoothDeviceInit(const WebString& id, const WebString& name) |
+ : id(id), name(name) {} |
// Members corresponding to BluetoothDevice attributes as specified in IDL. |
const WebString id; |
const WebString name; |
- const WebVector<WebString> uuids; |
}; |
} // namespace blink |