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

Unified Diff: components/proximity_auth/proximity_auth_system.cc

Issue 505373004: Introduce proximity_auth component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months 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/proximity_auth_system.cc
diff --git a/components/proximity_auth/proximity_auth_system.cc b/components/proximity_auth/proximity_auth_system.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fa2fbc5480b176b3db03c7300c86adbac03e44c7
--- /dev/null
+++ b/components/proximity_auth/proximity_auth_system.cc
@@ -0,0 +1,20 @@
+// 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.
+
+#include "components/proximity_auth/proximity_auth_system.h"
+
+namespace proximity_auth {
+
+ProximityAuthSystem::ProximityAuthSystem(const RemoteDeviceList& remote_devices)
+ : remote_devices_(remote_devices) {
+}
+
+ProximityAuthSystem::~ProximityAuthSystem() {
+}
+
+const RemoteDeviceList& ProximityAuthSystem::GetRemoteDevices() {
+ return remote_devices_;
+}
+
+} // proximity_auth

Powered by Google App Engine
This is Rietveld 408576698