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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html

Issue 2441313002: bluetooth: Introduce helper function for requesting a disconnection (Closed)
Patch Set: Add example to function 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/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html b/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
index 0eb45a8edf6a530f5c363d23c4d9aeb28d5304b3..3be98528b5cff5a72f02eb968418ebb3d0cdc235 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected_gc.html
@@ -11,10 +11,9 @@
optionalServices: [request_disconnection_service_uuid]
}))
.then(device => device.gatt.connect())
- .then(gattServer => gattServer.getPrimaryService(request_disconnection_service_uuid))
- .then(service => service.getCharacteristic(request_disconnection_characteristic_uuid))
+ .then(gattServer => get_request_disconnection(gattServer))
.then(requestDisconnection => {
- requestDisconnection.writeValue(new Uint8Array([0]));
+ requestDisconnection();
requestDisconnection = undefined;
return runGarbageCollection();
// Wait 50ms after the GC runs for the disconnection event to come back.

Powered by Google App Engine
This is Rietveld 408576698