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 18 matching lines...) Expand all Loading... |
29 class NetworkConnect; | 29 class NetworkConnect; |
30 class NetworkConnectionHandler; | 30 class NetworkConnectionHandler; |
31 class NetworkStateHandler; | 31 class NetworkStateHandler; |
32 | 32 |
33 namespace tether { | 33 namespace tether { |
34 | 34 |
35 class ActiveHost; | 35 class ActiveHost; |
36 class ActiveHostNetworkStateUpdater; | 36 class ActiveHostNetworkStateUpdater; |
37 class BleConnectionManager; | 37 class BleConnectionManager; |
38 class DeviceIdTetherNetworkGuidMap; | 38 class DeviceIdTetherNetworkGuidMap; |
39 class HostScanCache; | |
40 class HostScanner; | 39 class HostScanner; |
41 class HostScanDevicePrioritizer; | 40 class HostScanDevicePrioritizer; |
42 class LocalDeviceDataProvider; | 41 class LocalDeviceDataProvider; |
43 class NetworkConfigurationRemover; | 42 class NetworkConfigurationRemover; |
44 class NotificationPresenter; | 43 class NotificationPresenter; |
45 class TetherConnector; | 44 class TetherConnector; |
46 class TetherDeviceStateManager; | 45 class TetherDeviceStateManager; |
47 class TetherHostFetcher; | 46 class TetherHostFetcher; |
48 class TetherHostResponseRecorder; | 47 class TetherHostResponseRecorder; |
49 class TetherNetworkDisconnectionHandler; | 48 class TetherNetworkDisconnectionHandler; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 std::unique_ptr<WifiHotspotConnector> wifi_hotspot_connector_; | 118 std::unique_ptr<WifiHotspotConnector> wifi_hotspot_connector_; |
120 std::unique_ptr<ActiveHost> active_host_; | 119 std::unique_ptr<ActiveHost> active_host_; |
121 std::unique_ptr<ActiveHostNetworkStateUpdater> | 120 std::unique_ptr<ActiveHostNetworkStateUpdater> |
122 active_host_network_state_updater_; | 121 active_host_network_state_updater_; |
123 std::unique_ptr<DeviceIdTetherNetworkGuidMap> | 122 std::unique_ptr<DeviceIdTetherNetworkGuidMap> |
124 device_id_tether_network_guid_map_; | 123 device_id_tether_network_guid_map_; |
125 std::unique_ptr<TetherConnector> tether_connector_; | 124 std::unique_ptr<TetherConnector> tether_connector_; |
126 std::unique_ptr<NetworkConfigurationRemover> network_configuration_remover_; | 125 std::unique_ptr<NetworkConfigurationRemover> network_configuration_remover_; |
127 std::unique_ptr<TetherNetworkDisconnectionHandler> | 126 std::unique_ptr<TetherNetworkDisconnectionHandler> |
128 tether_network_disconnection_handler_; | 127 tether_network_disconnection_handler_; |
129 std::unique_ptr<HostScanCache> host_scan_cache_; | |
130 std::unique_ptr<HostScanner> host_scanner_; | 128 std::unique_ptr<HostScanner> host_scanner_; |
131 | 129 |
132 base::WeakPtrFactory<Initializer> weak_ptr_factory_; | 130 base::WeakPtrFactory<Initializer> weak_ptr_factory_; |
133 | 131 |
134 DISALLOW_COPY_AND_ASSIGN(Initializer); | 132 DISALLOW_COPY_AND_ASSIGN(Initializer); |
135 }; | 133 }; |
136 | 134 |
137 } // namespace tether | 135 } // namespace tether |
138 | 136 |
139 } // namespace chromeos | 137 } // namespace chromeos |
140 | 138 |
141 #endif // CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ | 139 #endif // CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_ |
OLD | NEW |