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

Side by Side Diff: chromeos/network/network_configuration_handler.h

Issue 1162943002: Replace more ObserverList with base::ObserverList. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@observer
Patch Set: Created 5 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ 5 #ifndef CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_
6 #define CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ 6 #define CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 // Signals the device handler to request an IP config refresh. 199 // Signals the device handler to request an IP config refresh.
200 void RequestRefreshIPConfigs(const std::string& service_path); 200 void RequestRefreshIPConfigs(const std::string& service_path);
201 201
202 // Unowned associated Network*Handlers (global or test instance). 202 // Unowned associated Network*Handlers (global or test instance).
203 NetworkStateHandler* network_state_handler_; 203 NetworkStateHandler* network_state_handler_;
204 NetworkDeviceHandler* network_device_handler_; 204 NetworkDeviceHandler* network_device_handler_;
205 205
206 // Map of in-progress deleter instances. Owned by this class. 206 // Map of in-progress deleter instances. Owned by this class.
207 std::map<std::string, ProfileEntryDeleter*> profile_entry_deleters_; 207 std::map<std::string, ProfileEntryDeleter*> profile_entry_deleters_;
208 208
209 ObserverList<NetworkConfigurationObserver> observers_; 209 base::ObserverList<NetworkConfigurationObserver> observers_;
210 210
211 DISALLOW_COPY_AND_ASSIGN(NetworkConfigurationHandler); 211 DISALLOW_COPY_AND_ASSIGN(NetworkConfigurationHandler);
212 }; 212 };
213 213
214 } // namespace chromeos 214 } // namespace chromeos
215 215
216 #endif // CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_ 216 #endif // CHROMEOS_NETWORK_NETWORK_CONFIGURATION_HANDLER_H_
OLDNEW
« no previous file with comments | « chromeos/network/managed_network_configuration_handler_impl.h ('k') | chromeos/network/network_connection_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698