| Index: content/child/bluetooth/bluetooth_dispatcher.cc
|
| diff --git a/content/child/bluetooth/bluetooth_dispatcher.cc b/content/child/bluetooth/bluetooth_dispatcher.cc
|
| index 82a047e16522db2429471e64f53aeb30c847e8aa..d100b5a2bb907fafdaf292b6cb540db4dcf1129d 100644
|
| --- a/content/child/bluetooth/bluetooth_dispatcher.cc
|
| +++ b/content/child/bluetooth/bluetooth_dispatcher.cc
|
| @@ -149,6 +149,7 @@ void BluetoothDispatcher::OnMessageReceived(const IPC::Message& msg) {
|
| }
|
|
|
| void BluetoothDispatcher::requestDevice(
|
| + int frame_routing_id,
|
| const WebRequestDeviceOptions& options,
|
| blink::WebBluetoothRequestDeviceCallbacks* callbacks) {
|
| int request_id = pending_requests_.Add(callbacks);
|
| @@ -170,7 +171,8 @@ void BluetoothDispatcher::requestDevice(
|
| }
|
|
|
| Send(new BluetoothHostMsg_RequestDevice(CurrentWorkerId(), request_id,
|
| - filters, optional_services));
|
| + frame_routing_id, filters,
|
| + optional_services));
|
| }
|
|
|
| void BluetoothDispatcher::connectGATT(
|
|
|