| 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/network_handler.h" | 5 #include "chromeos/network/network_handler.h" |
| 6 | 6 |
| 7 #include "base/thread_task_runner_handle.h" | 7 #include "base/threading/thread_task_runner_handle.h" |
| 8 #include "base/threading/worker_pool.h" | 8 #include "base/threading/worker_pool.h" |
| 9 #include "chromeos/dbus/dbus_thread_manager.h" | 9 #include "chromeos/dbus/dbus_thread_manager.h" |
| 10 #include "chromeos/network/auto_connect_handler.h" | 10 #include "chromeos/network/auto_connect_handler.h" |
| 11 #include "chromeos/network/client_cert_resolver.h" | 11 #include "chromeos/network/client_cert_resolver.h" |
| 12 #include "chromeos/network/geolocation_handler.h" | 12 #include "chromeos/network/geolocation_handler.h" |
| 13 #include "chromeos/network/managed_network_configuration_handler_impl.h" | 13 #include "chromeos/network/managed_network_configuration_handler_impl.h" |
| 14 #include "chromeos/network/network_activation_handler.h" | 14 #include "chromeos/network/network_activation_handler.h" |
| 15 #include "chromeos/network/network_cert_migrator.h" | 15 #include "chromeos/network/network_cert_migrator.h" |
| 16 #include "chromeos/network/network_configuration_handler.h" | 16 #include "chromeos/network/network_configuration_handler.h" |
| 17 #include "chromeos/network/network_connection_handler.h" | 17 #include "chromeos/network/network_connection_handler.h" |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 GeolocationHandler* NetworkHandler::geolocation_handler() { | 148 GeolocationHandler* NetworkHandler::geolocation_handler() { |
| 149 return geolocation_handler_.get(); | 149 return geolocation_handler_.get(); |
| 150 } | 150 } |
| 151 | 151 |
| 152 ProhibitedTechnologiesHandler* | 152 ProhibitedTechnologiesHandler* |
| 153 NetworkHandler::prohibited_technologies_handler() { | 153 NetworkHandler::prohibited_technologies_handler() { |
| 154 return prohibited_technologies_handler_.get(); | 154 return prohibited_technologies_handler_.get(); |
| 155 } | 155 } |
| 156 | 156 |
| 157 } // namespace chromeos | 157 } // namespace chromeos |
| OLD | NEW |