| 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 "base/basictypes.h" | |
| 9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 10 #include "net/proxy/dhcp_proxy_script_fetcher.h" | 9 #include "net/proxy/dhcp_proxy_script_fetcher.h" |
| 11 | 10 |
| 12 namespace net { | 11 namespace net { |
| 13 namespace interfaces { | 12 namespace interfaces { |
| 14 class ProxyResolverFactory; | 13 class ProxyResolverFactory; |
| 15 } | 14 } |
| 16 | 15 |
| 17 class HostResolver; | 16 class HostResolver; |
| 18 class MojoProxyResolverFactory; | 17 class MojoProxyResolverFactory; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 scoped_ptr<ProxyConfigService> proxy_config_service, | 55 scoped_ptr<ProxyConfigService> proxy_config_service, |
| 57 ProxyScriptFetcher* proxy_script_fetcher, | 56 ProxyScriptFetcher* proxy_script_fetcher, |
| 58 scoped_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, | 57 scoped_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, |
| 59 HostResolver* host_resolver, | 58 HostResolver* host_resolver, |
| 60 NetLog* net_log, | 59 NetLog* net_log, |
| 61 NetworkDelegate* network_delegate); | 60 NetworkDelegate* network_delegate); |
| 62 | 61 |
| 63 } // namespace net | 62 } // namespace net |
| 64 | 63 |
| 65 #endif // NET_PROXY_PROXY_SERVICE_MOJO_H_ | 64 #endif // NET_PROXY_PROXY_SERVICE_MOJO_H_ |
| OLD | NEW |