Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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/host_scanner.h" | |
| 6 | |
| 7 #include "base/location.h" | |
|
Ryan Hansberry
2016/12/12 19:18:27
What is this import used for?
Kyle Horimoto
2016/12/12 19:22:13
Done.
| |
| 8 | |
| 9 namespace chromeos { | |
| 10 | |
| 11 namespace tether { | |
| 12 | |
| 13 HostScanner::HostScanner() {} | |
| 14 | |
| 15 HostScanner::~HostScanner() {} | |
| 16 | |
| 17 void HostScanner::StartScan() {} | |
| 18 | |
| 19 } // namespace tether | |
| 20 | |
| 21 } // namespace chromeos | |
| OLD | NEW |