OLD | NEW |
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_STATE_HANDLER_H_ | 5 #ifndef CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ |
6 #define CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ | 6 #define CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 const std::string& service_path, | 246 const std::string& service_path, |
247 const std::string& key, | 247 const std::string& key, |
248 const base::Value& value) OVERRIDE; | 248 const base::Value& value) OVERRIDE; |
249 | 249 |
250 // Called by ShillPropertyHandler when a watched device property changes. | 250 // Called by ShillPropertyHandler when a watched device property changes. |
251 virtual void UpdateDeviceProperty( | 251 virtual void UpdateDeviceProperty( |
252 const std::string& device_path, | 252 const std::string& device_path, |
253 const std::string& key, | 253 const std::string& key, |
254 const base::Value& value) OVERRIDE; | 254 const base::Value& value) OVERRIDE; |
255 | 255 |
| 256 // Called by ShillPropertyHandler when a watched network or device |
| 257 // IPConfig property changes. |
| 258 virtual void UpdateIPConfigProperties( |
| 259 ManagedState::ManagedType type, |
| 260 const std::string& path, |
| 261 const std::string& ip_config_path, |
| 262 const base::DictionaryValue& properties) OVERRIDE; |
| 263 |
256 // Called by ShillPropertyHandler when the portal check list manager property | 264 // Called by ShillPropertyHandler when the portal check list manager property |
257 // changes. | 265 // changes. |
258 virtual void CheckPortalListChanged( | 266 virtual void CheckPortalListChanged( |
259 const std::string& check_portal_list) OVERRIDE; | 267 const std::string& check_portal_list) OVERRIDE; |
260 | 268 |
261 // Called by ShillPropertyHandler when a technology list changes. | 269 // Called by ShillPropertyHandler when a technology list changes. |
262 virtual void TechnologyListChanged() OVERRIDE; | 270 virtual void TechnologyListChanged() OVERRIDE; |
263 | 271 |
264 // Called by |shill_property_handler_| when the service or device list has | 272 // Called by |shill_property_handler_| when the service or device list has |
265 // changed and all entries have been updated. This updates the list and | 273 // changed and all entries have been updated. This updates the list and |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 | 356 |
349 // Callbacks to run when a scan for the technology type completes. | 357 // Callbacks to run when a scan for the technology type completes. |
350 ScanCompleteCallbackMap scan_complete_callbacks_; | 358 ScanCompleteCallbackMap scan_complete_callbacks_; |
351 | 359 |
352 DISALLOW_COPY_AND_ASSIGN(NetworkStateHandler); | 360 DISALLOW_COPY_AND_ASSIGN(NetworkStateHandler); |
353 }; | 361 }; |
354 | 362 |
355 } // namespace chromeos | 363 } // namespace chromeos |
356 | 364 |
357 #endif // CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ | 365 #endif // CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ |
OLD | NEW |