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

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

Issue 2893005: Change the default number of proxy resolver threads used for evaluating PAC s... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc comments Created 10 years, 5 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') | chrome/service/net/service_url_request_context.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 // Don't send HTTP-Referer headers. 620 // Don't send HTTP-Referer headers.
621 const char kNoReferrers[] = "no-referrers"; 621 const char kNoReferrers[] = "no-referrers";
622 622
623 // Don't use a proxy server, always make direct connections. Overrides any 623 // Don't use a proxy server, always make direct connections. Overrides any
624 // other proxy server flags that are passed. 624 // other proxy server flags that are passed.
625 const char kNoProxyServer[] = "no-proxy-server"; 625 const char kNoProxyServer[] = "no-proxy-server";
626 626
627 // Runs the renderer outside the sandbox. 627 // Runs the renderer outside the sandbox.
628 const char kNoSandbox[] = "no-sandbox"; 628 const char kNoSandbox[] = "no-sandbox";
629 629
630 // Specifies the maximum number of threads to use for running the Proxy
631 // Autoconfig (PAC) script.
632 const char kNumPacThreads[] = "num-pac-threads";
633
630 // Launch URL in new browser window. 634 // Launch URL in new browser window.
631 const char kOpenInNewWindow[] = "new-window"; 635 const char kOpenInNewWindow[] = "new-window";
632 636
633 // Package an extension to a .crx installable file from a given directory. 637 // Package an extension to a .crx installable file from a given directory.
634 const char kPackExtension[] = "pack-extension"; 638 const char kPackExtension[] = "pack-extension";
635 639
636 // Optional PEM private key is to use in signing packaged .crx. 640 // Optional PEM private key is to use in signing packaged .crx.
637 const char kPackExtensionKey[] = "pack-extension-key"; 641 const char kPackExtensionKey[] = "pack-extension-key";
638 642
639 // Specifies the path to the user data folder for the parent profile. 643 // Specifies the path to the user data folder for the parent profile.
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 1080
1077 // ----------------------------------------------------------------------------- 1081 // -----------------------------------------------------------------------------
1078 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1082 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1079 // 1083 //
1080 // You were going to just dump your switches here, weren't you? Instead, 1084 // You were going to just dump your switches here, weren't you? Instead,
1081 // please put them in alphabetical order above, or in order inside the 1085 // please put them in alphabetical order above, or in order inside the
1082 // appropriate ifdef at the bottom. The order should match the header. 1086 // appropriate ifdef at the bottom. The order should match the header.
1083 // ----------------------------------------------------------------------------- 1087 // -----------------------------------------------------------------------------
1084 1088
1085 } // namespace switches 1089 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/service/net/service_url_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698