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

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

Issue 2466223002: Implement WebBluetooth getDescriptor[s] (Closed)
Patch Set: Remove macos restriction 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 84d915fd495db3acdbbf855b6811c19d87763f45..73f1f397416d91620cd2fcb36a6b1fa71ca04823 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
@@ -55,7 +55,7 @@ class GetCharacteristicsCallback
: m_service(service), m_quantity(quantity), m_resolver(resolver) {
// We always check that the device is connected before constructing this
// object.
- CHECK(m_service->device()->gatt()->connected());
+ DCHECK(m_service->device()->gatt()->connected());
m_service->device()->gatt()->AddToActiveAlgorithms(m_resolver.get());
}

Powered by Google App Engine
This is Rietveld 408576698