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

Unified Diff: chromeos/components/tether/host_scanner.h

Issue 2564653004: CrOS Tether: Create HostScanScheduler, which schedules scans for devices which can serve as tether … (Closed)
Patch Set: Add another dependency. Created 4 years 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 side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « chromeos/components/tether/host_scan_scheduler_unittest.cc ('k') | chromeos/components/tether/host_scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698