Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698