| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Messages for Web Bluetooth API. | 5 // Messages for Web Bluetooth API. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 // Web Bluetooth Security | 8 // Web Bluetooth Security |
| 9 // The security mechanisms of Bluetooth are described in the specification: | 9 // The security mechanisms of Bluetooth are described in the specification: |
| 10 // https://webbluetoothcg.github.io/web-bluetooth | 10 // https://webbluetoothcg.github.io/web-bluetooth |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 // the --enable-experimental-web-platform-features flag. | 134 // the --enable-experimental-web-platform-features flag. |
| 135 IPC_MESSAGE_CONTROL2(BluetoothHostMsg_RequestDevice, | 135 IPC_MESSAGE_CONTROL2(BluetoothHostMsg_RequestDevice, |
| 136 int /* thread_id */, | 136 int /* thread_id */, |
| 137 int /* request_id */) | 137 int /* request_id */) |
| 138 | 138 |
| 139 // Connects to a bluetooth device. | 139 // Connects to a bluetooth device. |
| 140 IPC_MESSAGE_CONTROL3(BluetoothHostMsg_ConnectGATT, | 140 IPC_MESSAGE_CONTROL3(BluetoothHostMsg_ConnectGATT, |
| 141 int /* thread_id */, | 141 int /* thread_id */, |
| 142 int /* request_id */, | 142 int /* request_id */, |
| 143 std::string /* device_instance_id */) | 143 std::string /* device_instance_id */) |
| 144 |
| 145 // Configures the mock data set in the browser used while under test. |
| 146 // TODO(scheib): Disable testing in non-test executables. crbug.com/436284. |
| 147 IPC_MESSAGE_CONTROL1(BluetoothHostMsg_SetBluetoothMockDataSetForTesting, |
| 148 std::string /* name */) |
| OLD | NEW |