Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp |
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp |
index e55bcb1f7268e6df91918186717c9e8b909aa99c..84d915fd495db3acdbbf855b6811c19d87763f45 100644 |
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp |
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp |
@@ -79,7 +79,7 @@ class GetCharacteristicsCallback |
m_resolver->resolve( |
m_service->device()->getOrCreateBluetoothRemoteGATTCharacteristic( |
m_resolver->getExecutionContext(), |
- wrapUnique(webCharacteristics[0]), m_service)); |
+ WTF::wrapUnique(webCharacteristics[0]), m_service)); |
return; |
} |
@@ -89,8 +89,8 @@ class GetCharacteristicsCallback |
webCharacteristics) { |
characteristics.append( |
m_service->device()->getOrCreateBluetoothRemoteGATTCharacteristic( |
- m_resolver->getExecutionContext(), wrapUnique(webCharacteristic), |
- m_service)); |
+ m_resolver->getExecutionContext(), |
+ WTF::wrapUnique(webCharacteristic), m_service)); |
} |
m_resolver->resolve(characteristics); |
} |