| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/managed_network_configuration_handler_impl.h" | 5 #include "chromeos/network/managed_network_configuration_handler_impl.h" |
| 6 | 6 |
| 7 #include <set> | |
| 8 #include <vector> | 7 #include <vector> |
| 9 | 8 |
| 10 #include "base/bind.h" | 9 #include "base/bind.h" |
| 11 #include "base/guid.h" | 10 #include "base/guid.h" |
| 12 #include "base/location.h" | 11 #include "base/location.h" |
| 13 #include "base/logging.h" | 12 #include "base/logging.h" |
| 14 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
| 16 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
| 17 #include "base/values.h" | 16 #include "base/values.h" |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 scoped_ptr<base::DictionaryValue> network_properties, | 799 scoped_ptr<base::DictionaryValue> network_properties, |
| 801 GetDevicePropertiesCallback send_callback, | 800 GetDevicePropertiesCallback send_callback, |
| 802 const std::string& error_name, | 801 const std::string& error_name, |
| 803 scoped_ptr<base::DictionaryValue> error_data) { | 802 scoped_ptr<base::DictionaryValue> error_data) { |
| 804 NET_LOG_ERROR("Error getting device properties", service_path); | 803 NET_LOG_ERROR("Error getting device properties", service_path); |
| 805 send_callback.Run(service_path, network_properties.Pass()); | 804 send_callback.Run(service_path, network_properties.Pass()); |
| 806 } | 805 } |
| 807 | 806 |
| 808 | 807 |
| 809 } // namespace chromeos | 808 } // namespace chromeos |
| OLD | NEW |