| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_V8_H_ | 5 #ifndef NET_PROXY_PROXY_SERVICE_V8_H_ |
| 6 #define NET_PROXY_PROXY_SERVICE_V8_H_ | 6 #define NET_PROXY_PROXY_SERVICE_V8_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/base/net_export.h" | 9 #include "net/base/net_export.h" |
| 11 #include "net/proxy/dhcp_proxy_script_fetcher.h" | 10 #include "net/proxy/dhcp_proxy_script_fetcher.h" |
| 12 | 11 |
| 13 namespace net { | 12 namespace net { |
| 14 | 13 |
| 15 class HostResolver; | 14 class HostResolver; |
| 16 class NetLog; | 15 class NetLog; |
| 17 class NetworkDelegate; | 16 class NetworkDelegate; |
| 18 class ProxyConfigService; | 17 class ProxyConfigService; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 41 scoped_ptr<ProxyConfigService> proxy_config_service, | 40 scoped_ptr<ProxyConfigService> proxy_config_service, |
| 42 ProxyScriptFetcher* proxy_script_fetcher, | 41 ProxyScriptFetcher* proxy_script_fetcher, |
| 43 scoped_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, | 42 scoped_ptr<DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher, |
| 44 HostResolver* host_resolver, | 43 HostResolver* host_resolver, |
| 45 NetLog* net_log, | 44 NetLog* net_log, |
| 46 NetworkDelegate* network_delegate); | 45 NetworkDelegate* network_delegate); |
| 47 | 46 |
| 48 } // namespace net | 47 } // namespace net |
| 49 | 48 |
| 50 #endif // NET_PROXY_PROXY_SERVICE_V8_H_ | 49 #endif // NET_PROXY_PROXY_SERVICE_V8_H_ |
| OLD | NEW |