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

Unified Diff: components/proximity_auth/remote_device.h

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/remote_device.h
diff --git a/components/proximity_auth/remote_device.h b/components/proximity_auth/remote_device.h
new file mode 100644
index 0000000000000000000000000000000000000000..c97d9d664a30240d654cafd1ae1a6e26f2acac4b
--- /dev/null
+++ b/components/proximity_auth/remote_device.h
@@ -0,0 +1,21 @@
+// 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 proximity_auth {
+
+struct RemoteDevice {
+ std::string name;
+};
+
+typedef std::vector<RemoteDevice> RemoteDeviceList;
Ilya Sherman 2014/08/27 03:18:33 nit: I prefer spelling out the full type name to u
Tim Song 2014/08/27 19:40:05 Done.
+
+} // namespace proximity_auth
+
+#endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H

Powered by Google App Engine
This is Rietveld 408576698