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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/same-device.html

Issue 2867713008: bluetooth: Implement known_service_uuids for Peripherals. (Closed)
Patch Set: rebase Created 3 years, 7 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/requestDevice/same-device.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/same-device.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/same-device.html
index 9bd54a162c93d56a389bdb76a568c22e58272c2f..4b46453921b65ab1e2b819cc7d26adcd3056e370 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/same-device.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/same-device.html
@@ -2,13 +2,15 @@
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
+<script src="../../resources/bluetooth/web-bluetooth-test.js"></script>
+<script src="../../resources/mojo-helpers.js"></script>
<script>
'use strict';
promise_test(() => {
let devices = [];
let push = device => devices.push(device);
- return setBluetoothFakeAdapter('HeartRateAdapter')
+ return setUpHealthThermometerAndHeartRateDevices()
.then(() => requestDeviceWithKeyDown({
filters: [{services: [heart_rate.alias]}]}))
.then(push)

Powered by Google App Engine
This is Rietveld 408576698