Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: third_party/WebKit/public/platform/modules/bluetooth/WebBluetoothDeviceInit.h

Issue 2456613002: Remove BluetoothDevice.uuids attribute from WebBluetooth (Closed)
Patch Set: address more comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698