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

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

Issue 2844973002: [CrOS Tether] Create TetherHostResponseRecorder, which records ConnectTetheringResponses and Tether… (Closed)
Patch Set: Removed file that didn't belong in this CL, alphabetized forward declarations. Created 3 years, 8 months 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
index d17d8c1399002a27c08e1a10606a3ca780634f80..1913a980eae7afb97099daa464122431ef118dad 100644
--- a/chromeos/components/tether/host_scanner.h
+++ b/chromeos/components/tether/host_scanner.h
@@ -21,6 +21,7 @@ class BleConnectionManager;
class DeviceIdTetherNetworkGuidMap;
class HostScanDevicePrioritizer;
class TetherHostFetcher;
+class TetherHostResponseRecorder;
// Scans for nearby tether hosts.
// TODO(khorimoto): Add some sort of "staleness" timeout which removes scan
@@ -31,6 +32,7 @@ class HostScanner : public HostScannerOperation::Observer {
HostScanner(TetherHostFetcher* tether_host_fetcher,
BleConnectionManager* connection_manager,
HostScanDevicePrioritizer* host_scan_device_prioritizer,
+ TetherHostResponseRecorder* tether_host_response_recorder,
NetworkStateHandler* network_state_handler,
NotificationPresenter* notification_presenter,
DeviceIdTetherNetworkGuidMap* device_id_tether_network_guid_map);
@@ -62,6 +64,7 @@ class HostScanner : public HostScannerOperation::Observer {
TetherHostFetcher* tether_host_fetcher_;
BleConnectionManager* connection_manager_;
HostScanDevicePrioritizer* host_scan_device_prioritizer_;
+ TetherHostResponseRecorder* tether_host_response_recorder_;
NetworkStateHandler* network_state_handler_;
NotificationPresenter* notification_presenter_;
DeviceIdTetherNetworkGuidMap* device_id_tether_network_guid_map_;

Powered by Google App Engine
This is Rietveld 408576698