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

Side by Side Diff: components/cryptauth/cryptauth_test_util.h

Issue 2561203002: Migrate weave-related classes from proximity_auth/ble to cryptauth/ble. (Closed)
Patch Set: Rebase. Created 4 years 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_CRYPTAUTH_CRYPTAUTH_TEST_UTIL_H
6 #define COMPONENTS_CRYPTAUTH_CRYPTAUTH_TEST_UTIL_H
7
8 #include "components/cryptauth/remote_device.h"
9
10 namespace cryptauth {
11
12 // Attributes of the default test remote device.
13 extern const char kTestRemoteDeviceUserId[];
14 extern const char kTestRemoteDeviceName[];
15 extern const char kTestRemoteDevicePublicKey[];
16 extern const char kTestRemoteDeviceBluetoothAddress[];
17 extern const char kTestRemoteDevicePSK[];
18 extern const char kTestRemoteDeviceSignInChallenge[];
19
20 // Returns a BLE RemoteDevice used for tests.
21 inline RemoteDevice CreateLERemoteDeviceForTest() {
22 return RemoteDevice(kTestRemoteDeviceUserId, kTestRemoteDeviceName,
23 kTestRemoteDevicePublicKey, RemoteDevice::BLUETOOTH_LE,
24 kTestRemoteDeviceBluetoothAddress, kTestRemoteDevicePSK,
25 kTestRemoteDeviceSignInChallenge);
26 }
27
28 // Returns a classic Bluetooth RemoteDevice used for tests.
29 inline RemoteDevice CreateClassicRemoteDeviceForTest() {
30 return RemoteDevice(kTestRemoteDeviceUserId, kTestRemoteDeviceName,
31 kTestRemoteDevicePublicKey,
32 RemoteDevice::BLUETOOTH_CLASSIC,
33 kTestRemoteDeviceBluetoothAddress, kTestRemoteDevicePSK,
34 kTestRemoteDeviceSignInChallenge);
35 }
36
37 } // namespace cryptauth
38
39 #endif // COMPONENTS_CRYPTAUTH_CRYPTAUTH_TEST_UTIL_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698