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

Side by Side Diff: chromeos/components/tether/initializer.h

Issue 2917803002: Tether: Display a 'setup required' notification when appropriate. (Closed)
Patch Set: Rebase. Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | chromeos/components/tether/initializer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chromeos/components/tether/initializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698