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..0ce9fbbbc21813216c310e4dee1017b44d90bd6c 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 routing_id, |
const WebRequestDeviceOptions& options, |
blink::WebBluetoothRequestDeviceCallbacks* callbacks) { |
int request_id = pending_requests_.Add(callbacks); |
@@ -169,8 +170,8 @@ void BluetoothDispatcher::requestDevice( |
optional_services.push_back(device::BluetoothUUID(optional_service.utf8())); |
} |
- Send(new BluetoothHostMsg_RequestDevice(CurrentWorkerId(), request_id, |
- filters, optional_services)); |
+ Send(new BluetoothHostMsg_RequestDevice( |
+ CurrentWorkerId(), request_id, routing_id, filters, optional_services)); |
} |
void BluetoothDispatcher::connectGATT( |