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.
5 #include "components/proximity_auth/remote_device.h"
7 namespace proximity_auth
{
9 RemoteDevice::RemoteDevice() {}
11 RemoteDevice::RemoteDevice(const std::string
& name
,
12 const std::string
& public_key
,
13 const std::string
& bluetooth_address
,
14 const std::string
& persistent_symmetric_key
)
16 public_key(public_key
),
17 bluetooth_address(bluetooth_address
),
18 persistent_symmetric_key(persistent_symmetric_key
) {}
20 RemoteDevice::~RemoteDevice() {}