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

Unified Diff: content/browser/bluetooth/bluetooth_dispatcher_host.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/browser/bluetooth/bluetooth_dispatcher_host.h
diff --git a/content/browser/bluetooth/bluetooth_dispatcher_host.h b/content/browser/bluetooth/bluetooth_dispatcher_host.h
index d45271d0464dd192af4adc0c296d0de9bd7a957e..53291588e899b8b8cd46301f26c2074b46049c63 100644
--- a/content/browser/bluetooth/bluetooth_dispatcher_host.h
+++ b/content/browser/bluetooth/bluetooth_dispatcher_host.h
@@ -182,7 +182,9 @@ class CONTENT_EXPORT BluetoothDispatcherHost final
device::BluetoothGattService::GattErrorCode);
// Callbacks for BluetoothGattCharacteristic::WriteRemoteCharacteristic.
- void OnWriteValueSuccess(int thread_id, int request_id);
+ void OnWriteValueSuccess(int thread_id,
+ int request_id,
+ const std::vector<uint8_t>& value);
void OnWriteValueFailed(int thread_id,
int request_id,
device::BluetoothGattService::GattErrorCode);

Powered by Google App Engine
This is Rietveld 408576698