OLD | NEW |
(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 |
OLD | NEW |