| Index: third_party/WebKit/LayoutTests/resources/bluetooth/web-bluetooth-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/resources/bluetooth/web-bluetooth-test.js b/third_party/WebKit/LayoutTests/resources/bluetooth/web-bluetooth-test.js
|
| index 1f5e29de04cc173968a316ff774450e17a328fc5..450c27d360293c32dec0bf33b16d4700e956ae02 100644
|
| --- a/third_party/WebKit/LayoutTests/resources/bluetooth/web-bluetooth-test.js
|
| +++ b/third_party/WebKit/LayoutTests/resources/bluetooth/web-bluetooth-test.js
|
| @@ -139,7 +139,7 @@
|
|
|
| let peripheral = this.peripherals_.get(address);
|
| if (peripheral === undefined) {
|
| - peripheral = new FakePeripheral(address, this.fake_central_ptr_);
|
| + peripheral = new FakePeripheral(address, this);
|
| this.peripherals_.set(address, peripheral);
|
| }
|
|
|
| @@ -148,22 +148,9 @@
|
| }
|
|
|
| class FakePeripheral {
|
| - constructor(address, fake_central_ptr) {
|
| + constructor(address, fake_central) {
|
| this.address = address;
|
| - this.fake_central_ptr_ = fake_central_ptr;
|
| - }
|
| -
|
| - // Sets the next GATT Connection request response to |code|. |code| could be
|
| - // an HCI Error Code from BT 4.2 Vol 2 Part D 1.3 List Of Error Codes or a
|
| - // number outside that range returned by specific platforms e.g. Android
|
| - // returns 0x101 to signal a GATT failure
|
| - // https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#GATT_FAILURE
|
| - async setNextGATTConnectionResponse({code}) {
|
| - let {success} =
|
| - await this.fake_central_ptr_.setNextGATTConnectionResponse(
|
| - this.address, code);
|
| -
|
| - if (success !== true) throw 'Cannot set next response.';
|
| + this.fake_central_ = fake_central;
|
| }
|
| }
|
|
|
|
|