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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/remote_device.h
diff --git a/components/proximity_auth/remote_device.h b/components/proximity_auth/remote_device.h
deleted file mode 100644
index a484a2a62d7921b6aaaacc021c7939fffc645012..0000000000000000000000000000000000000000
--- a/components/proximity_auth/remote_device.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
-#define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
-
-#include <string>
-#include <vector>
-
-namespace cryptauth {
-
-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
- public:
- enum BluetoothType { BLUETOOTH_CLASSIC, BLUETOOTH_LE };
-
- std::string user_id;
- std::string name;
- std::string public_key;
- BluetoothType bluetooth_type;
- std::string bluetooth_address;
- std::string persistent_symmetric_key;
- std::string sign_in_challenge;
-
- 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);
- RemoteDevice(const RemoteDevice& other);
- ~RemoteDevice();
-};
-
-typedef std::vector<RemoteDevice> RemoteDeviceList;
-
-} // namespace cryptauth
-
-#endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
« 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