| Index: chrome/test/data/webui/bluetooth_internals_browsertest.js
|
| diff --git a/chrome/test/data/webui/bluetooth_internals_browsertest.js b/chrome/test/data/webui/bluetooth_internals_browsertest.js
|
| index 8d15b7d903e8f80d7f132db183fcf3fe750cbc10..ae30e2da945b9acb70e1556ccbfdfd1cdf6dcfc8 100644
|
| --- a/chrome/test/data/webui/bluetooth_internals_browsertest.js
|
| +++ b/chrome/test/data/webui/bluetooth_internals_browsertest.js
|
| @@ -67,7 +67,8 @@ BluetoothInternalsTest.prototype = {
|
| ]);
|
|
|
| this.adapter = new TestAdapter();
|
| - this.adapterHandle_ = connection.bindStubDerivedImpl(this.adapter);
|
| + this.adapterBinding_ = new bindings.Binding(adapter.Adapter,
|
| + this.adapter);
|
| };
|
|
|
| TestAdapterFactoryProxy.prototype = {
|
| @@ -77,7 +78,7 @@ BluetoothInternalsTest.prototype = {
|
|
|
| // Create message pipe bound to TestAdapter.
|
| return Promise.resolve({
|
| - adapter: this.adapterHandle_,
|
| + adapter: this.adapterBinding_.createInterfacePtrAndBind(),
|
| });
|
| }
|
| };
|
|
|