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

Unified Diff: content/renderer/bluetooth/bluetooth_dispatcher.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/renderer/bluetooth/bluetooth_dispatcher.h
diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.h b/content/renderer/bluetooth/bluetooth_dispatcher.h
index 6dbd5ea93578e43c1efcf631b4fed5f1906b64bf..dd4f9258dd5cecf53afaf29475b798a4ef20a407 100644
--- a/content/renderer/bluetooth/bluetooth_dispatcher.h
+++ b/content/renderer/bluetooth/bluetooth_dispatcher.h
@@ -191,7 +191,9 @@ class BluetoothDispatcher : public WorkerThread::Observer {
void OnReadValueError(int thread_id,
int request_id,
blink::WebBluetoothError error);
- void OnWriteValueSuccess(int thread_id, int request_id);
+ void OnWriteValueSuccess(int thread_id,
+ int request_id,
+ const std::vector<uint8_t>& value);
void OnWriteValueError(int thread_id,
int request_id,
blink::WebBluetoothError error);

Powered by Google App Engine
This is Rietveld 408576698