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 #ifndef CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |
| 6 #define CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |
| 7 |
| 8 namespace chromeos { |
| 9 |
| 10 namespace tether { |
| 11 |
| 12 // Scans for nearby tether hosts. |
| 13 // TODO(khorimoto): Implement. |
| 14 class HostScanner { |
| 15 public: |
| 16 HostScanner(); |
| 17 virtual ~HostScanner(); |
| 18 |
| 19 virtual void StartScan(); |
| 20 }; |
| 21 |
| 22 } // namespace tether |
| 23 |
| 24 } // namespace chromeos |
| 25 |
| 26 #endif // CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |
OLD | NEW |