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

Side by Side Diff: chrome/browser/net/proxy_service_factory.cc

Issue 7019015: Revert 85646 - Adds support for the DHCP portion of the WPAD (proxy auto-discovery) protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/net/connection_tester.cc ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/net/proxy_service_factory.h" 5 #include "chrome/browser/net/proxy_service_factory.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/string_number_conversions.h" 8 #include "base/string_number_conversions.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/net/pref_proxy_config_service.h" 10 #include "chrome/browser/net/pref_proxy_config_service.h"
11 #include "chrome/browser/io_thread.h" 11 #include "chrome/browser/io_thread.h"
12 #include "chrome/common/chrome_switches.h" 12 #include "chrome/common/chrome_switches.h"
13 #include "content/browser/browser_thread.h" 13 #include "content/browser/browser_thread.h"
14 #include "net/base/net_log.h" 14 #include "net/base/net_log.h"
15 #include "net/proxy/dhcp_proxy_script_fetcher_factory.h"
16 #include "net/proxy/proxy_config_service.h" 15 #include "net/proxy/proxy_config_service.h"
17 #include "net/proxy/proxy_script_fetcher_impl.h" 16 #include "net/proxy/proxy_script_fetcher_impl.h"
18 #include "net/proxy/proxy_service.h" 17 #include "net/proxy/proxy_service.h"
19 #include "net/url_request/url_request_context.h" 18 #include "net/url_request/url_request_context.h"
20 19
21 #if defined(OS_CHROMEOS) 20 #if defined(OS_CHROMEOS)
22 #include "chrome/browser/chromeos/cros/cros_library.h" 21 #include "chrome/browser/chromeos/cros/cros_library.h"
23 #include "chrome/browser/chromeos/cros/libcros_service_library.h" 22 #include "chrome/browser/chromeos/cros/libcros_service_library.h"
24 #include "chrome/browser/chromeos/proxy_config_service.h" 23 #include "chrome/browser/chromeos/proxy_config_service.h"
25 #endif // defined(OS_CHROMEOS) 24 #endif // defined(OS_CHROMEOS)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 int n; 77 int n;
79 if (base::StringToInt(s, &n) && n > 0) { 78 if (base::StringToInt(s, &n) && n > 0) {
80 num_pac_threads = static_cast<size_t>(n); 79 num_pac_threads = static_cast<size_t>(n);
81 } else { 80 } else {
82 LOG(ERROR) << "Invalid switch for number of PAC threads: " << s; 81 LOG(ERROR) << "Invalid switch for number of PAC threads: " << s;
83 } 82 }
84 } 83 }
85 84
86 net::ProxyService* proxy_service; 85 net::ProxyService* proxy_service;
87 if (use_v8) { 86 if (use_v8) {
88 net::DhcpProxyScriptFetcherFactory dhcp_factory;
89 if (command_line.HasSwitch(switches::kEnableDhcpWpad)) {
90 dhcp_factory.set_enabled(true);
91 }
92
93 proxy_service = net::ProxyService::CreateUsingV8ProxyResolver( 87 proxy_service = net::ProxyService::CreateUsingV8ProxyResolver(
94 proxy_config_service, 88 proxy_config_service,
95 num_pac_threads, 89 num_pac_threads,
96 new net::ProxyScriptFetcherImpl(context), 90 new net::ProxyScriptFetcherImpl(context),
97 dhcp_factory.Create(context),
98 context->host_resolver(), 91 context->host_resolver(),
99 net_log, 92 net_log,
100 context->network_delegate()); 93 context->network_delegate());
101 } else { 94 } else {
102 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver( 95 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver(
103 proxy_config_service, 96 proxy_config_service,
104 num_pac_threads, 97 num_pac_threads,
105 net_log); 98 net_log);
106 } 99 }
107 100
108 #if defined(OS_CHROMEOS) 101 #if defined(OS_CHROMEOS)
109 if (chromeos::CrosLibrary::Get()->EnsureLoaded()) { 102 if (chromeos::CrosLibrary::Get()->EnsureLoaded()) {
110 chromeos::CrosLibrary::Get()->GetLibCrosServiceLibrary()->StartService(); 103 chromeos::CrosLibrary::Get()->GetLibCrosServiceLibrary()->StartService();
111 } 104 }
112 #endif // defined(OS_CHROMEOS) 105 #endif // defined(OS_CHROMEOS)
113 106
114 return proxy_service; 107 return proxy_service;
115 } 108 }
OLDNEW
« no previous file with comments | « chrome/browser/net/connection_tester.cc ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698