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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chromeos/components/tether/device_id_tether_network_guid_map.h"
6
7 namespace chromeos {
8
9 namespace tether {
10
11 DeviceIdTetherNetworkGuidMap::DeviceIdTetherNetworkGuidMap() {}
12
13 DeviceIdTetherNetworkGuidMap::~DeviceIdTetherNetworkGuidMap() {}
14
15 std::string DeviceIdTetherNetworkGuidMap::GetDeviceIdForTetherNetworkGuid(
16 const std::string& tether_network_guid) {
17 // TODO(hansberry): Use real implementation.
18 return tether_network_guid;
19 }
20
21 std::string DeviceIdTetherNetworkGuidMap::GetTetherNetworkGuidForDeviceId(
22 const std::string& device_id) {
23 // TODO(hansberry): Use real implementation.
24 return device_id;
25 }
26
27 } // namespace tether
28
29 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698