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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.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/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);
}

Powered by Google App Engine
This is Rietveld 408576698