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

Unified Diff: content/common/bluetooth/bluetooth_messages.h

Issue 1611443002: bluetooth: Update BluetoothGATTCharacteristic.value on writeValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@useDataview
Patch Set: Created 4 years, 11 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: content/common/bluetooth/bluetooth_messages.h
diff --git a/content/common/bluetooth/bluetooth_messages.h b/content/common/bluetooth/bluetooth_messages.h
index 52255700290fa2474b30b58df50780dc2c6457d0..32f2bb99c87cec6b5acd32794ef4808b035b763f 100644
--- a/content/common/bluetooth/bluetooth_messages.h
+++ b/content/common/bluetooth/bluetooth_messages.h
@@ -179,9 +179,10 @@ IPC_MESSAGE_CONTROL3(BluetoothMsg_ReadCharacteristicValueError,
// Informs the renderer that the value has been successfully written to
// the characteristic.
-IPC_MESSAGE_CONTROL2(BluetoothMsg_WriteCharacteristicValueSuccess,
+IPC_MESSAGE_CONTROL3(BluetoothMsg_WriteCharacteristicValueSuccess,
int /* thread_id */,
- int /* request_id */)
+ int /* request_id */,
+ std::vector<uint8_t> /* value */)
// Informs the renderer that an error occurred while writing a value to a
// characteristic.

Powered by Google App Engine
This is Rietveld 408576698