Chromium Code Reviews| Index: content/common/bluetooth/bluetooth_messages.h |
| diff --git a/content/common/bluetooth/bluetooth_messages.h b/content/common/bluetooth/bluetooth_messages.h |
| index 3fce338dd2710a4df29733fcff138e3f0bd4d703..cde3b965bf486d8f89d793474afe1c82d2ccbcc1 100644 |
| --- a/content/common/bluetooth/bluetooth_messages.h |
| +++ b/content/common/bluetooth/bluetooth_messages.h |
| @@ -186,15 +186,10 @@ IPC_MESSAGE_CONTROL3(BluetoothMsg_WriteCharacteristicValueError, |
| // Messages sent from the renderer to the browser. |
| // Requests a bluetooth device from the browser. |
| -// TODO(scheib): UI to select and permit access to a device crbug.com/436280. |
| -// This will include refactoring messages to be associated with an origin |
| -// and making this initial requestDevice call with an associated frame. |
| -// This work is deferred to simplify initial prototype patches. |
| -// The Bluetooth feature, and the BluetoothDispatcherHost are behind |
| -// the --enable-experimental-web-platform-features flag. |
| -IPC_MESSAGE_CONTROL4(BluetoothHostMsg_RequestDevice, |
| +IPC_MESSAGE_CONTROL5(BluetoothHostMsg_RequestDevice, |
| int /* thread_id */, |
| int /* request_id */, |
| + int /* routing_id */, |
|
scheib
2015/07/16 01:11:46
Yes, adding frame_routing_id here would make this
Jeffrey Yasskin
2015/07/17 01:32:44
Done.
|
| std::vector<content::BluetoothScanFilter>, |
| std::vector<device::BluetoothUUID> /* optional_services */) |