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

Side by Side 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 unified diff | Download patch
OLDNEW
(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
OLDNEW
« 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