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

Unified Diff: chromeos/components/tether/device_id_tether_network_guid_map.cc

Issue 2792483002: [CrOS Tether] Create TetherConnector, which attempts to connect to a nearby tether host. (Closed)
Patch Set: hansberry@ comment. Created 3 years, 8 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: chromeos/components/tether/device_id_tether_network_guid_map.cc
diff --git a/chromeos/components/tether/device_id_tether_network_guid_map.cc b/chromeos/components/tether/device_id_tether_network_guid_map.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9f22153680ab71b0dabb0c2d1d953d8639fda86a
--- /dev/null
+++ b/chromeos/components/tether/device_id_tether_network_guid_map.cc
@@ -0,0 +1,29 @@
+// Copyright 2016 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 "chromeos/components/tether/device_id_tether_network_guid_map.h"
+
+namespace chromeos {
+
+namespace tether {
+
+DeviceIdTetherNetworkGuidMap::DeviceIdTetherNetworkGuidMap() {}
+
+DeviceIdTetherNetworkGuidMap::~DeviceIdTetherNetworkGuidMap() {}
+
+std::string DeviceIdTetherNetworkGuidMap::GetDeviceIdForTetherNetworkGuid(
+ const std::string& tether_network_guid) {
+ // TODO(hansberry): Use real implementation.
+ return tether_network_guid;
+}
+
+std::string DeviceIdTetherNetworkGuidMap::GetTetherNetworkGuidForDeviceId(
+ const std::string& device_id) {
+ // TODO(hansberry): Use real implementation.
+ return device_id;
+}
+
+} // namespace tether
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698