OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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.h" | 5 #include "chromeos/network/managed_network_configuration_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/guid.h" | 11 #include "base/guid.h" |
12 #include "base/json/json_writer.h" | 12 #include "base/json/json_writer.h" |
13 #include "base/location.h" | 13 #include "base/location.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/stl_util.h" | 17 #include "base/stl_util.h" |
18 #include "base/string_util.h" | 18 #include "base/strings/string_util.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "chromeos/dbus/dbus_method_call_status.h" | 20 #include "chromeos/dbus/dbus_method_call_status.h" |
21 #include "chromeos/dbus/dbus_thread_manager.h" | 21 #include "chromeos/dbus/dbus_thread_manager.h" |
22 #include "chromeos/dbus/shill_manager_client.h" | 22 #include "chromeos/dbus/shill_manager_client.h" |
23 #include "chromeos/dbus/shill_profile_client.h" | 23 #include "chromeos/dbus/shill_profile_client.h" |
24 #include "chromeos/dbus/shill_service_client.h" | 24 #include "chromeos/dbus/shill_service_client.h" |
25 #include "chromeos/network/network_configuration_handler.h" | 25 #include "chromeos/network/network_configuration_handler.h" |
26 #include "chromeos/network/network_event_log.h" | 26 #include "chromeos/network/network_event_log.h" |
27 #include "chromeos/network/network_handler_callbacks.h" | 27 #include "chromeos/network/network_handler_callbacks.h" |
28 #include "chromeos/network/network_profile.h" | 28 #include "chromeos/network/network_profile.h" |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 NetworkStateHandler* network_state_handler, | 908 NetworkStateHandler* network_state_handler, |
909 NetworkProfileHandler* network_profile_handler, | 909 NetworkProfileHandler* network_profile_handler, |
910 NetworkConfigurationHandler* network_configuration_handler) { | 910 NetworkConfigurationHandler* network_configuration_handler) { |
911 network_state_handler_ = network_state_handler; | 911 network_state_handler_ = network_state_handler; |
912 network_profile_handler_ = network_profile_handler; | 912 network_profile_handler_ = network_profile_handler; |
913 network_configuration_handler_ = network_configuration_handler; | 913 network_configuration_handler_ = network_configuration_handler; |
914 network_profile_handler_->AddObserver(this); | 914 network_profile_handler_->AddObserver(this); |
915 } | 915 } |
916 | 916 |
917 } // namespace chromeos | 917 } // namespace chromeos |
OLD | NEW |