| 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/network_connection_handler.h" | 5 #include "chromeos/network/network_connection_handler.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/thread_task_runner_handle.h" | 12 #include "base/threading/thread_task_runner_handle.h" |
| 13 #include "chromeos/dbus/dbus_thread_manager.h" | 13 #include "chromeos/dbus/dbus_thread_manager.h" |
| 14 #include "chromeos/dbus/shill_manager_client.h" | 14 #include "chromeos/dbus/shill_manager_client.h" |
| 15 #include "chromeos/dbus/shill_service_client.h" | 15 #include "chromeos/dbus/shill_service_client.h" |
| 16 #include "chromeos/network/certificate_pattern.h" | 16 #include "chromeos/network/certificate_pattern.h" |
| 17 #include "chromeos/network/client_cert_resolver.h" | 17 #include "chromeos/network/client_cert_resolver.h" |
| 18 #include "chromeos/network/client_cert_util.h" | 18 #include "chromeos/network/client_cert_util.h" |
| 19 #include "chromeos/network/managed_network_configuration_handler.h" | 19 #include "chromeos/network/managed_network_configuration_handler.h" |
| 20 #include "chromeos/network/network_configuration_handler.h" | 20 #include "chromeos/network/network_configuration_handler.h" |
| 21 #include "chromeos/network/network_event_log.h" | 21 #include "chromeos/network/network_event_log.h" |
| 22 #include "chromeos/network/network_profile_handler.h" | 22 #include "chromeos/network/network_profile_handler.h" |
| (...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 | 809 |
| 810 void NetworkConnectionHandler::HandleShillDisconnectSuccess( | 810 void NetworkConnectionHandler::HandleShillDisconnectSuccess( |
| 811 const std::string& service_path, | 811 const std::string& service_path, |
| 812 const base::Closure& success_callback) { | 812 const base::Closure& success_callback) { |
| 813 NET_LOG_EVENT("Disconnect Request Sent", service_path); | 813 NET_LOG_EVENT("Disconnect Request Sent", service_path); |
| 814 if (!success_callback.is_null()) | 814 if (!success_callback.is_null()) |
| 815 success_callback.Run(); | 815 success_callback.Run(); |
| 816 } | 816 } |
| 817 | 817 |
| 818 } // namespace chromeos | 818 } // namespace chromeos |
| OLD | NEW |