diff options
author | beaufort.francois <beaufort.francois@gmail.com> | 2016-01-21 10:29:59 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-21 18:32:10 +0000 |
commit | f5ab6b86e41c7abbc468ff8b7c3aac245cd2c048 (patch) | |
tree | f96456fbb73131393c1069f2a50038b3e571423d /content/renderer/bluetooth/bluetooth_dispatcher.h | |
parent | 4ff9d8538064843279add0ba3a10b1d2fc778167 (diff) | |
download | chromium_src-f5ab6b86e41c7abbc468ff8b7c3aac245cd2c048.zip chromium_src-f5ab6b86e41c7abbc468ff8b7c3aac245cd2c048.tar.gz chromium_src-f5ab6b86e41c7abbc468ff8b7c3aac245cd2c048.tar.bz2 |
bluetooth: Update BluetoothCharacteristic.value on writeValue
BUG=507415
Review URL: https://codereview.chromium.org/1611443002
Cr-Commit-Position: refs/heads/master@{#370733}
Diffstat (limited to 'content/renderer/bluetooth/bluetooth_dispatcher.h')
-rw-r--r-- | content/renderer/bluetooth/bluetooth_dispatcher.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.h b/content/renderer/bluetooth/bluetooth_dispatcher.h index 73d69d1..dc8370c 100644 --- a/content/renderer/bluetooth/bluetooth_dispatcher.h +++ b/content/renderer/bluetooth/bluetooth_dispatcher.h @@ -33,6 +33,7 @@ class Message; struct BluetoothCharacteristicRequest; struct BluetoothPrimaryServiceRequest; +struct BluetoothWriteValueRequest; struct BluetoothNotificationsRequest; namespace content { @@ -241,7 +242,7 @@ class BluetoothDispatcher : public WorkerThread::Observer { // Tracks requests to read from a characteristics. IDMap<blink::WebBluetoothReadValueCallbacks, IDMapOwnPointer> pending_read_value_requests_; - IDMap<blink::WebBluetoothWriteValueCallbacks, IDMapOwnPointer> + IDMap<BluetoothWriteValueRequest, IDMapOwnPointer> pending_write_value_requests_; IDMap<BluetoothNotificationsRequest, IDMapOwnPointer> pending_notifications_requests_; |