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

Side by Side Diff: components/proximity_auth/remote_device.h

Issue 2586983003: Remove //components/proximity_auth/remote_device.h. It was supposed to have been removed in https:/… (Closed)
Patch Set: 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 2014 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_PROXIMITY_AUTH_REMOTE_DEVICE_H
6 #define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
7
8 #include <string>
9 #include <vector>
10
11 namespace cryptauth {
12
13 struct RemoteDevice {
msarda 2016/12/19 18:12:27 Was this file moved? I do not see the added on in
Kyle Horimoto 2016/12/19 18:15:02 It was moved in the original CL which is linked to
14 public:
15 enum BluetoothType { BLUETOOTH_CLASSIC, BLUETOOTH_LE };
16
17 std::string user_id;
18 std::string name;
19 std::string public_key;
20 BluetoothType bluetooth_type;
21 std::string bluetooth_address;
22 std::string persistent_symmetric_key;
23 std::string sign_in_challenge;
24
25 RemoteDevice();
26 RemoteDevice(const std::string& user_id,
27 const std::string& name,
28 const std::string& public_key,
29 BluetoothType bluetooth_type,
30 const std::string& bluetooth_address,
31 const std::string& persistent_symmetric_key,
32 std::string sign_in_challenge);
33 RemoteDevice(const RemoteDevice& other);
34 ~RemoteDevice();
35 };
36
37 typedef std::vector<RemoteDevice> RemoteDeviceList;
38
39 } // namespace cryptauth
40
41 #endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
OLDNEW
« components/cryptauth/DEPS ('K') | « components/cryptauth/eid_generator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698