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

Unified Diff: components/proximity_auth/remote_device.cc

Issue 2560713002: Move RemoteDevice from //components/proximity_auth to //components/cryptauth so that it can be easi… (Closed)
Patch Set: Add cryptauth dependency. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/proximity_auth/remote_device.h ('k') | components/proximity_auth/remote_device_life_cycle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/remote_device.cc
diff --git a/components/proximity_auth/remote_device.cc b/components/proximity_auth/remote_device.cc
deleted file mode 100644
index cecf0239b8e1faa50b620eb280d2d23cbfd45db7..0000000000000000000000000000000000000000
--- a/components/proximity_auth/remote_device.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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(const RemoteDevice& other) = default;
-
-RemoteDevice::~RemoteDevice() {}
-
-} // namespace
« no previous file with comments | « components/proximity_auth/remote_device.h ('k') | components/proximity_auth/remote_device_life_cycle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698