Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: content/common/bluetooth/bluetooth_messages.h

Issue 1125133005: bluetooth: Move testing IPC from BluetoothDispatcher to BlinkTestRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for stable release mode tests Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698