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

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

Issue 2728813002: bluetooth: Improve error message for retrieving Descriptors when disconnecting (Closed)
Patch Set: Fix conflict error Created 3 years, 9 months 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/BluetoothError.cpp
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp
index 78e59fc5eedceb88c0019e271189075c62b243bf..bb1cad0281073c36a802e388076133e01ef066bc 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothError.cpp
@@ -28,6 +28,9 @@ DOMException* BluetoothError::createNotConnectedException(
case BluetoothOperation::CharacteristicsRetrieval:
operationString = "retrieve characteristics";
break;
+ case BluetoothOperation::DescriptorsRetrieval:
+ operationString = "retrieve descriptors";
+ break;
case BluetoothOperation::GATT:
operationString = "perform GATT operations";
break;

Powered by Google App Engine
This is Rietveld 408576698