| Index: content/child/bluetooth/web_bluetooth_impl.cc
|
| diff --git a/content/child/bluetooth/web_bluetooth_impl.cc b/content/child/bluetooth/web_bluetooth_impl.cc
|
| index fd85a7dfd8892166513cb247150b158684bae38e..c307461a5345fe98d311dd38defbf9fbe3c55ba8 100644
|
| --- a/content/child/bluetooth/web_bluetooth_impl.cc
|
| +++ b/content/child/bluetooth/web_bluetooth_impl.cc
|
| @@ -49,6 +49,13 @@ void WebBluetoothImpl::readValue(
|
| GetDispatcher()->readValue(characteristic_instance_id, callbacks);
|
| }
|
|
|
| +void WebBluetoothImpl::writeValue(
|
| + const blink::WebString& characteristic_instance_id,
|
| + const std::vector<uint8_t>& value,
|
| + blink::WebBluetoothWriteValueCallbacks* callbacks) {
|
| + GetDispatcher()->writeValue(characteristic_instance_id, value, callbacks);
|
| +}
|
| +
|
| BluetoothDispatcher* WebBluetoothImpl::GetDispatcher() {
|
| return BluetoothDispatcher::GetOrCreateThreadSpecificInstance(
|
| thread_safe_sender_.get());
|
|
|