Index: chromeos/components/tether/host_scanner.h |
diff --git a/chromeos/components/tether/host_scanner.h b/chromeos/components/tether/host_scanner.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..18f4e25211f671566fba7a1b604364e5907cb499 |
--- /dev/null |
+++ b/chromeos/components/tether/host_scanner.h |
@@ -0,0 +1,26 @@ |
+// 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. |
+ |
+#ifndef CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |
+#define CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |
+ |
+namespace chromeos { |
+ |
+namespace tether { |
+ |
+// Scans for nearby tether hosts. |
+// TODO(khorimoto): Implement. |
+class HostScanner { |
+ public: |
+ HostScanner(); |
+ virtual ~HostScanner(); |
+ |
+ virtual void StartScan(); |
+}; |
+ |
+} // namespace tether |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROMEOS_COMPONENTS_TETHER_HOST_SCANNER_H |