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

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

Issue 2394423002: bluetooth: Rename blink::mojom::WebBluetoothError (Closed)
Patch Set: Created 4 years, 2 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/BluetoothRemoteGATTCharacteristic.cpp
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
index dd0ccd103ab3385636c2c888ee0fa4c4c7bbb98a..ef0f3ed8ecce6e3fa92498fe791cded573b0240a 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTCharacteristic.cpp
@@ -135,7 +135,7 @@ class ReadValueCallback : public WebBluetoothReadValueCallbacks {
void onError(
int32_t
- error /* Corresponds to WebBluetoothError in web_bluetooth.mojom */)
+ error /* Corresponds to WebBluetoothResult in web_bluetooth.mojom */)
override {
if (!m_resolver->getExecutionContext() ||
m_resolver->getExecutionContext()->activeDOMObjectsAreStopped())
@@ -180,7 +180,7 @@ class WriteValueCallback : public WebBluetoothWriteValueCallbacks {
void onError(
int32_t
- error /* Corresponds to WebBluetoothError in web_bluetooth.mojom */)
+ error /* Corresponds to WebBluetoothResult in web_bluetooth.mojom */)
override {
if (!m_resolver->getExecutionContext() ||
m_resolver->getExecutionContext()->activeDOMObjectsAreStopped())
@@ -237,7 +237,7 @@ class NotificationsCallback : public WebBluetoothNotificationsCallbacks {
void onError(
int32_t
- error /* Corresponds to WebBluetoothError in web_bluetooth.mojom */)
+ error /* Corresponds to WebBluetoothResult in web_bluetooth.mojom */)
override {
if (!m_resolver->getExecutionContext() ||
m_resolver->getExecutionContext()->activeDOMObjectsAreStopped())

Powered by Google App Engine
This is Rietveld 408576698