| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| index 0ca9749184f9e46a0ef41604898de20846cae4b5..9bd912ef3d7f699e505bcb846ce08d662018f948 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| @@ -77,9 +77,10 @@ ScriptPromise BluetoothRemoteGATTServer::connect(ScriptState* scriptState) {
|
|
|
| mojom::blink::WebBluetoothService* service = m_device->bluetooth()->service();
|
| service->RemoteServerConnect(
|
| - device()->id(), convertToBaseCallback(WTF::bind(
|
| - &BluetoothRemoteGATTServer::ConnectCallback,
|
| - wrapPersistent(this), wrapPersistent(resolver))));
|
| + device()->id(),
|
| + convertToBaseCallback(
|
| + WTF::bind(&BluetoothRemoteGATTServer::ConnectCallback,
|
| + wrapPersistent(this), wrapPersistent(resolver))));
|
|
|
| return promise;
|
| }
|
|
|