| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ | 5 #ifndef CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ |
| 6 #define CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ | 6 #define CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 remote_beacon_seed_fetcher_; | 117 remote_beacon_seed_fetcher_; |
| 118 std::unique_ptr<BleConnectionManager> ble_connection_manager_; | 118 std::unique_ptr<BleConnectionManager> ble_connection_manager_; |
| 119 std::unique_ptr<TetherHostResponseRecorder> tether_host_response_recorder_; | 119 std::unique_ptr<TetherHostResponseRecorder> tether_host_response_recorder_; |
| 120 std::unique_ptr<HostScanDevicePrioritizer> host_scan_device_prioritizer_; | 120 std::unique_ptr<HostScanDevicePrioritizer> host_scan_device_prioritizer_; |
| 121 std::unique_ptr<WifiHotspotConnector> wifi_hotspot_connector_; | 121 std::unique_ptr<WifiHotspotConnector> wifi_hotspot_connector_; |
| 122 std::unique_ptr<ActiveHost> active_host_; | 122 std::unique_ptr<ActiveHost> active_host_; |
| 123 std::unique_ptr<ActiveHostNetworkStateUpdater> | 123 std::unique_ptr<ActiveHostNetworkStateUpdater> |
| 124 active_host_network_state_updater_; | 124 active_host_network_state_updater_; |
| 125 std::unique_ptr<DeviceIdTetherNetworkGuidMap> | 125 std::unique_ptr<DeviceIdTetherNetworkGuidMap> |
| 126 device_id_tether_network_guid_map_; | 126 device_id_tether_network_guid_map_; |
| 127 std::unique_ptr<HostScanCache> host_scan_cache_; |
| 128 std::unique_ptr<base::DefaultClock> clock_; |
| 129 std::unique_ptr<HostScanner> host_scanner_; |
| 130 std::unique_ptr<HostScanScheduler> host_scan_scheduler_; |
| 127 std::unique_ptr<TetherConnector> tether_connector_; | 131 std::unique_ptr<TetherConnector> tether_connector_; |
| 128 std::unique_ptr<TetherDisconnector> tether_disconnector_; | 132 std::unique_ptr<TetherDisconnector> tether_disconnector_; |
| 129 std::unique_ptr<NetworkConfigurationRemover> network_configuration_remover_; | 133 std::unique_ptr<NetworkConfigurationRemover> network_configuration_remover_; |
| 130 std::unique_ptr<NetworkConnectionHandlerTetherDelegate> | 134 std::unique_ptr<NetworkConnectionHandlerTetherDelegate> |
| 131 network_connection_handler_tether_delegate_; | 135 network_connection_handler_tether_delegate_; |
| 132 std::unique_ptr<TetherNetworkDisconnectionHandler> | 136 std::unique_ptr<TetherNetworkDisconnectionHandler> |
| 133 tether_network_disconnection_handler_; | 137 tether_network_disconnection_handler_; |
| 134 std::unique_ptr<HostScanCache> host_scan_cache_; | |
| 135 std::unique_ptr<base::DefaultClock> clock_; | |
| 136 std::unique_ptr<HostScanner> host_scanner_; | |
| 137 std::unique_ptr<HostScanScheduler> host_scan_scheduler_; | |
| 138 | 138 |
| 139 base::WeakPtrFactory<Initializer> weak_ptr_factory_; | 139 base::WeakPtrFactory<Initializer> weak_ptr_factory_; |
| 140 | 140 |
| 141 DISALLOW_COPY_AND_ASSIGN(Initializer); | 141 DISALLOW_COPY_AND_ASSIGN(Initializer); |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace tether | 144 } // namespace tether |
| 145 | 145 |
| 146 } // namespace chromeos | 146 } // namespace chromeos |
| 147 | 147 |
| 148 #endif // CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ | 148 #endif // CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ |
| OLD | NEW |