| 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 b97391111c6a2f84432c34352658e710fe6c93d2..1fbd1f65bd533253d9e8bd7a020cfb29bbb72f3d 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.cpp
|
| @@ -139,7 +139,7 @@ class GetPrimaryServicesCallback
|
| if (m_quantity == mojom::blink::WebBluetoothGATTQueryQuantity::SINGLE) {
|
| DCHECK_EQ(1u, webServices.size());
|
| m_resolver->resolve(m_device->getOrCreateBluetoothRemoteGATTService(
|
| - wrapUnique(webServices[0])));
|
| + WTF::wrapUnique(webServices[0])));
|
| return;
|
| }
|
|
|
| @@ -147,7 +147,7 @@ class GetPrimaryServicesCallback
|
| services.reserveInitialCapacity(webServices.size());
|
| for (WebBluetoothRemoteGATTService* webService : webServices) {
|
| services.append(m_device->getOrCreateBluetoothRemoteGATTService(
|
| - wrapUnique(webService)));
|
| + WTF::wrapUnique(webService)));
|
| }
|
| m_resolver->resolve(services);
|
| }
|
|
|