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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 115725: Rename the --proxy-bypass-urls command-line switch --proxy-bypass-list.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 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/common/chrome_switches.h ('k') | no next file » | 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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 const wchar_t kMakeDefaultBrowser[] = L"make-default-browser"; 232 const wchar_t kMakeDefaultBrowser[] = L"make-default-browser";
233 233
234 // Use a specified proxy server, overrides system settings. This switch only 234 // Use a specified proxy server, overrides system settings. This switch only
235 // affects HTTP and HTTPS requests. 235 // affects HTTP and HTTPS requests.
236 const wchar_t kProxyServer[] = L"proxy-server"; 236 const wchar_t kProxyServer[] = L"proxy-server";
237 237
238 // Don't use a proxy server, always make direct connections. Overrides any 238 // Don't use a proxy server, always make direct connections. Overrides any
239 // other proxy server flags that are passed. 239 // other proxy server flags that are passed.
240 const wchar_t kNoProxyServer[] = L"no-proxy-server"; 240 const wchar_t kNoProxyServer[] = L"no-proxy-server";
241 241
242 // Specify a list of URLs for whom we bypass proxy settings and use direct 242 // Specify a list of hosts for whom we bypass proxy settings and use direct
243 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are 243 // connections. Ignored if --proxy-auto-detect or --no-proxy-server are
244 // also specified. 244 // also specified.
245 // TODO(robertshield): Specify URL format. 245 // TODO(robertshield): Specify host format.
246 const wchar_t kProxyBypassUrls[] = L"proxy-bypass-urls"; 246 const wchar_t kProxyBypassList[] = L"proxy-bypass-list";
247 247
248 // Force proxy auto-detection. 248 // Force proxy auto-detection.
249 const wchar_t kProxyAutoDetect[] = L"proxy-auto-detect"; 249 const wchar_t kProxyAutoDetect[] = L"proxy-auto-detect";
250 250
251 // Use the pac script at the given URL 251 // Use the pac script at the given URL
252 const wchar_t kProxyPacUrl[] = L"proxy-pac-url"; 252 const wchar_t kProxyPacUrl[] = L"proxy-pac-url";
253 253
254 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is 254 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is
255 // to use Chromium's network stack to fetch, and V8 to evaluate. 255 // to use Chromium's network stack to fetch, and V8 to evaluate.
256 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver"; 256 const wchar_t kWinHttpProxyResolver[] = L"winhttp-proxy-resolver";
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 // passed the command line: 466 // passed the command line:
467 // force-fieldtest=DnsImpact/_disabled_prefetch 467 // force-fieldtest=DnsImpact/_disabled_prefetch
468 // The renderer will then force said named field test to exist, and will force 468 // The renderer will then force said named field test to exist, and will force
469 // the selected outcome to have the indicated text value. 469 // the selected outcome to have the indicated text value.
470 const wchar_t kForceFieldTestNameAndValue[] = L"force-fieldtest"; 470 const wchar_t kForceFieldTestNameAndValue[] = L"force-fieldtest";
471 471
472 // Enables the prototype of the next version of the New Tab page. 472 // Enables the prototype of the next version of the New Tab page.
473 const wchar_t kNewNewTabPage[] = L"new-new-tab-page"; 473 const wchar_t kNewNewTabPage[] = L"new-new-tab-page";
474 474
475 } // namespace switches 475 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698