Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: chromeos/network/network_connection_handler.cc

Issue 947173002: Remove duplicate includes from chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/message_loop/message_loop_proxy.h" 10 #include "base/message_loop/message_loop_proxy.h"
11 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "chromeos/cert_loader.h"
13 #include "chromeos/dbus/dbus_thread_manager.h" 12 #include "chromeos/dbus/dbus_thread_manager.h"
14 #include "chromeos/dbus/shill_manager_client.h" 13 #include "chromeos/dbus/shill_manager_client.h"
15 #include "chromeos/dbus/shill_service_client.h" 14 #include "chromeos/dbus/shill_service_client.h"
16 #include "chromeos/network/certificate_pattern.h" 15 #include "chromeos/network/certificate_pattern.h"
17 #include "chromeos/network/client_cert_resolver.h" 16 #include "chromeos/network/client_cert_resolver.h"
18 #include "chromeos/network/client_cert_util.h" 17 #include "chromeos/network/client_cert_util.h"
19 #include "chromeos/network/managed_network_configuration_handler.h" 18 #include "chromeos/network/managed_network_configuration_handler.h"
20 #include "chromeos/network/network_configuration_handler.h" 19 #include "chromeos/network/network_configuration_handler.h"
21 #include "chromeos/network/network_event_log.h" 20 #include "chromeos/network/network_event_log.h"
22 #include "chromeos/network/network_handler_callbacks.h"
23 #include "chromeos/network/network_profile_handler.h" 21 #include "chromeos/network/network_profile_handler.h"
24 #include "chromeos/network/network_state.h" 22 #include "chromeos/network/network_state.h"
25 #include "chromeos/network/network_state_handler.h" 23 #include "chromeos/network/network_state_handler.h"
26 #include "chromeos/network/shill_property_util.h" 24 #include "chromeos/network/shill_property_util.h"
27 #include "dbus/object_path.h" 25 #include "dbus/object_path.h"
28 #include "net/cert/x509_certificate.h" 26 #include "net/cert/x509_certificate.h"
29 #include "third_party/cros_system_api/dbus/service_constants.h" 27 #include "third_party/cros_system_api/dbus/service_constants.h"
30 28
31 namespace chromeos { 29 namespace chromeos {
32 30
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 772
775 void NetworkConnectionHandler::HandleShillDisconnectSuccess( 773 void NetworkConnectionHandler::HandleShillDisconnectSuccess(
776 const std::string& service_path, 774 const std::string& service_path,
777 const base::Closure& success_callback) { 775 const base::Closure& success_callback) {
778 NET_LOG_EVENT("Disconnect Request Sent", service_path); 776 NET_LOG_EVENT("Disconnect Request Sent", service_path);
779 if (!success_callback.is_null()) 777 if (!success_callback.is_null())
780 success_callback.Run(); 778 success_callback.Run();
781 } 779 }
782 780
783 } // namespace chromeos 781 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/network/network_configuration_handler.cc ('k') | chromeos/network/network_device_handler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698