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

Unified Diff: third_party/WebKit/LayoutTests/resources/bluetooth/bluetooth-helpers.js

Issue 2466223002: Implement WebBluetooth getDescriptor[s] (Closed)
Patch Set: Ensure that we throw a kGattServerNotConnected error if getDescriptor[s] is called while not connec… Created 4 years, 1 month 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/resources/bluetooth/bluetooth-helpers.js
diff --git a/third_party/WebKit/LayoutTests/resources/bluetooth/bluetooth-helpers.js b/third_party/WebKit/LayoutTests/resources/bluetooth/bluetooth-helpers.js
index 993ffbcc3de8ae12dcbb61d4592e8f1d5c04c2e3..a2825f9c98ebc2df92d400d5c10e1a1c5be7abb0 100644
--- a/third_party/WebKit/LayoutTests/resources/bluetooth/bluetooth-helpers.js
+++ b/third_party/WebKit/LayoutTests/resources/bluetooth/bluetooth-helpers.js
@@ -52,6 +52,16 @@ var battery_level = {
name: 'battery_level',
uuid: '00002a19-0000-1000-8000-00805f9b34fb'
};
+var user_description = {
+ alias: 0x2901,
+ name: 'user_description',
ortuno 2016/11/21 03:34:09 This should be: 'gatt.characteristic_user_descript
dougt 2016/11/22 01:47:16 Acknowledged.
+ uuid: '00002901-0000-1000-8000-00805f9b34fb'
+};
+var client_characteristic_configuration = {
+ alias: 0x2902,
+ name: 'client_characteristic_configuration',
ortuno 2016/11/21 03:34:09 This one should be: 'gatt.client_characteristic_co
dougt 2016/11/22 01:47:16 Acknowledged.
+ uuid: '00002902-0000-1000-8000-00805f9b34fb'
+};
// The following tests make sure the Web Bluetooth implementation
// responds correctly to the different types of errors the

Powered by Google App Engine
This is Rietveld 408576698