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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html

Issue 1564953003: bluetooth: Remove BluetoothDevice.paired (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/LayoutTests/bluetooth/idl-BluetoothDevice.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html b/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
index 58d9a77e814b605cb2e74c23502e1c7896866d1c..4c533ec721666ecbdecfb0a8a6da0bff9dc9f564 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/idl-BluetoothDevice.html
@@ -28,7 +28,6 @@ promise_test(() => {
device.vendorID = 'overwritten';
device.productID = 'overwritten';
device.productVersion = 'overwritten';
- device.paired = 'overwritten';
device.uuids = 'overwritten';
assert_equals(device.id, '00:00:00:00:00:00');
assert_equals(device.name, 'Heart Rate Device');
@@ -37,7 +36,6 @@ promise_test(() => {
assert_equals(device.vendorID, 0xFFFF);
assert_equals(device.productID, 1);
assert_equals(device.productVersion, 2);
- assert_equals(device.paired, true);
assert_equals(device.uuids.length, 1);
assert_equals(device.uuids[0], heart_rate.uuid);
});

Powered by Google App Engine
This is Rietveld 408576698