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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 const std::string& service_path, | 254 const std::string& service_path, |
255 const std::string& key, | 255 const std::string& key, |
256 const base::Value& value) OVERRIDE; | 256 const base::Value& value) OVERRIDE; |
257 | 257 |
258 // Called by ShillPropertyHandler when a watched device property changes. | 258 // Called by ShillPropertyHandler when a watched device property changes. |
259 virtual void UpdateDeviceProperty( | 259 virtual void UpdateDeviceProperty( |
260 const std::string& device_path, | 260 const std::string& device_path, |
261 const std::string& key, | 261 const std::string& key, |
262 const base::Value& value) OVERRIDE; | 262 const base::Value& value) OVERRIDE; |
263 | 263 |
| 264 // Called by ShillPropertyHandler when a watched network or device |
| 265 // IPConfig property changes. |
| 266 virtual void UpdateIPConfigProperites( |
| 267 ManagedState::ManagedType type, |
| 268 const std::string& path, |
| 269 const std::string& ip_config_path, |
| 270 const base::DictionaryValue& properties) OVERRIDE; |
| 271 |
264 // Called by ShillPropertyHandler when the portal check list manager property | 272 // Called by ShillPropertyHandler when the portal check list manager property |
265 // changes. | 273 // changes. |
266 virtual void CheckPortalListChanged( | 274 virtual void CheckPortalListChanged( |
267 const std::string& check_portal_list) OVERRIDE; | 275 const std::string& check_portal_list) OVERRIDE; |
268 | 276 |
269 // Called by ShillPropertyHandler when a technology list changes. | 277 // Called by ShillPropertyHandler when a technology list changes. |
270 virtual void TechnologyListChanged() OVERRIDE; | 278 virtual void TechnologyListChanged() OVERRIDE; |
271 | 279 |
272 // Called by |shill_property_handler_| when the service or device list has | 280 // Called by |shill_property_handler_| when the service or device list has |
273 // changed and all entries have been updated. This updates the list and | 281 // 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... |
356 | 364 |
357 // Callbacks to run when a scan for the technology type completes. | 365 // Callbacks to run when a scan for the technology type completes. |
358 ScanCompleteCallbackMap scan_complete_callbacks_; | 366 ScanCompleteCallbackMap scan_complete_callbacks_; |
359 | 367 |
360 DISALLOW_COPY_AND_ASSIGN(NetworkStateHandler); | 368 DISALLOW_COPY_AND_ASSIGN(NetworkStateHandler); |
361 }; | 369 }; |
362 | 370 |
363 } // namespace chromeos | 371 } // namespace chromeos |
364 | 372 |
365 #endif // CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ | 373 #endif // CHROMEOS_NETWORK_NETWORK_STATE_HANDLER_H_ |
OLD | NEW |