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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl

Issue 1926623002: bluetooth: Remove the device info and device class fields from BluetoothDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/Source/modules/bluetooth/BluetoothDevice.idl
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
index 219bb5141242a63936d014a8147f65cdadb36f92..9d7619934ab070d724036cd162780a21296a210a 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothDevice.idl
@@ -6,11 +6,6 @@
// Implement BluetoothDevice interface: http://crbug.com/421668
-enum VendorIDSource {
- "bluetooth",
- "usb"
-};
-
[
DependentLifetime,
OriginTrialEnabled=WebBluetooth,
@@ -23,11 +18,6 @@ enum VendorIDSource {
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothAdvertisingData adData;
- readonly attribute unsigned long? deviceClass;
- readonly attribute VendorIDSource? vendorIDSource;
- readonly attribute unsigned long? vendorID;
- readonly attribute unsigned long? productID;
- readonly attribute unsigned long? productVersion;
readonly attribute BluetoothRemoteGATTServer gatt;
readonly attribute UUID[] uuids;
[CallWith=ScriptState, DeprecateAs=BluetoothDeviceConnectGATT] Promise<BluetoothRemoteGATTServer> connectGATT ();

Powered by Google App Engine
This is Rietveld 408576698