blob: cabe7149dadf5ba183a9b7b2e8c8a3eef4fd69d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/proximity_auth/remote_device.h"
namespace proximity_auth {
RemoteDevice::RemoteDevice() : bluetooth_type(BLUETOOTH_CLASSIC) {}
RemoteDevice::RemoteDevice(const std::string& user_id,
const std::string& name,
const std::string& public_key,
BluetoothType bluetooth_type,
const std::string& bluetooth_address,
const std::string& persistent_symmetric_key,
std::string sign_in_challenge)
: user_id(user_id),
name(name),
public_key(public_key),
bluetooth_type(bluetooth_type),
bluetooth_address(bluetooth_address),
persistent_symmetric_key(persistent_symmetric_key),
sign_in_challenge(sign_in_challenge) {}
RemoteDevice::~RemoteDevice() {}
} // namespace
|