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 #include "chromeos/network/shill_property_handler.h" | 5 #include "chromeos/network/shill_property_handler.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <sstream> | 9 #include <sstream> |
8 | 10 |
9 #include "base/bind.h" | 11 #include "base/bind.h" |
10 #include "base/format_macros.h" | 12 #include "base/format_macros.h" |
| 13 #include "base/macros.h" |
11 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
12 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
13 #include "base/values.h" | 16 #include "base/values.h" |
14 #include "chromeos/dbus/dbus_thread_manager.h" | 17 #include "chromeos/dbus/dbus_thread_manager.h" |
15 #include "chromeos/dbus/shill_device_client.h" | 18 #include "chromeos/dbus/shill_device_client.h" |
16 #include "chromeos/dbus/shill_ipconfig_client.h" | 19 #include "chromeos/dbus/shill_ipconfig_client.h" |
17 #include "chromeos/dbus/shill_manager_client.h" | 20 #include "chromeos/dbus/shill_manager_client.h" |
18 #include "chromeos/dbus/shill_profile_client.h" | 21 #include "chromeos/dbus/shill_profile_client.h" |
19 #include "chromeos/dbus/shill_service_client.h" | 22 #include "chromeos/dbus/shill_service_client.h" |
20 #include "chromeos/network/network_state.h" | 23 #include "chromeos/network/network_state.h" |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 NET_LOG(EVENT) << "Failed to get IP Config properties: " << ip_config_path | 561 NET_LOG(EVENT) << "Failed to get IP Config properties: " << ip_config_path |
559 << ": " << call_status << ", For: " << path; | 562 << ": " << call_status << ", For: " << path; |
560 return; | 563 return; |
561 } | 564 } |
562 NET_LOG(EVENT) << "IP Config properties received: " << path; | 565 NET_LOG(EVENT) << "IP Config properties received: " << path; |
563 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties); | 566 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties); |
564 } | 567 } |
565 | 568 |
566 } // namespace internal | 569 } // namespace internal |
567 } // namespace chromeos | 570 } // namespace chromeos |
OLD | NEW |