| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef NET_PROXY_PROXY_SERVICE_MOJO_H_ | 5 #ifndef NET_PROXY_PROXY_SERVICE_MOJO_H_ |
| 6 #define NET_PROXY_PROXY_SERVICE_MOJO_H_ | 6 #define NET_PROXY_PROXY_SERVICE_MOJO_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "net/proxy/dhcp_proxy_script_fetcher.h" | 10 #include "net/proxy/dhcp_proxy_script_fetcher.h" |
| 11 | 11 |
| 12 namespace net { | 12 namespace net { |
| 13 namespace interfaces { | |
| 14 class ProxyResolverFactory; | |
| 15 } | |
| 16 | 13 |
| 17 class HostResolver; | 14 class HostResolver; |
| 18 class MojoProxyResolverFactory; | 15 class MojoProxyResolverFactory; |
| 19 class NetLog; | 16 class NetLog; |
| 20 class NetworkDelegate; | 17 class NetworkDelegate; |
| 21 class ProxyConfigService; | 18 class ProxyConfigService; |
| 22 class ProxyScriptFetcher; | 19 class ProxyScriptFetcher; |
| 23 class ProxyService; | 20 class ProxyService; |
| 24 | 21 |
| 25 // Creates a proxy service that uses |mojo_proxy_factory| to create and connect | 22 // Creates a proxy service that uses |mojo_proxy_factory| to create and connect |
| (...skipping 30 matching lines...) Expand all Loading... |
| 56 std::unique_ptr<ProxyConfigService> proxy_config_service, | 53 std::unique_ptr<ProxyConfigService> proxy_config_service, |
| 57 ProxyScriptFetcher* proxy_script_fetcher, | 54 ProxyScriptFetcher* proxy_script_fetcher, |
| 58 std::unique_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, | 55 std::unique_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, |
| 59 HostResolver* host_resolver, | 56 HostResolver* host_resolver, |
| 60 NetLog* net_log, | 57 NetLog* net_log, |
| 61 NetworkDelegate* network_delegate); | 58 NetworkDelegate* network_delegate); |
| 62 | 59 |
| 63 } // namespace net | 60 } // namespace net |
| 64 | 61 |
| 65 #endif // NET_PROXY_PROXY_SERVICE_MOJO_H_ | 62 #endif // NET_PROXY_PROXY_SERVICE_MOJO_H_ |
| OLD | NEW |