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

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

Issue 27365: Add a command line flag --v8-proxy-resolver, to select the new PAC implementa... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address wtc's comments Created 11 years, 9 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 const wchar_t kShowIcons[] = L"show-icons"; 229 const wchar_t kShowIcons[] = L"show-icons";
230 230
231 // Make Chrome default browser 231 // Make Chrome default browser
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 // Enable alternate proxy autoconfig implementation, which downloads PAC
239 // scripts internally and executes them using V8 (as opposed to fetching
240 // and executing using WinHTTP). This cannot be used in conjunction with
241 // --single-process.
242 const wchar_t kV8ProxyResolver[] = L"v8-proxy-resolver";
243
238 // Chrome will support prefetching of DNS information. Until this becomes 244 // Chrome will support prefetching of DNS information. Until this becomes
239 // the default, we'll provide a command line switch. 245 // the default, we'll provide a command line switch.
240 extern const wchar_t kDnsLogDetails[] = L"dns-log-details"; 246 extern const wchar_t kDnsLogDetails[] = L"dns-log-details";
241 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable"; 247 extern const wchar_t kDnsPrefetchDisable[] = L"dns-prefetch-disable";
242 248
243 // Enables support to debug printing subsystem. 249 // Enables support to debug printing subsystem.
244 const wchar_t kDebugPrint[] = L"debug-print"; 250 const wchar_t kDebugPrint[] = L"debug-print";
245 251
246 // Allow initialization of all activex controls. This is only to help website 252 // Allow initialization of all activex controls. This is only to help website
247 // developers test their controls to see if they are compatible in Chrome. 253 // developers test their controls to see if they are compatible in Chrome.
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 392
387 // On POSIX only: the contents of this flag are prepended to the renderer 393 // On POSIX only: the contents of this flag are prepended to the renderer
388 // command line. (Useful values might be "valgrind" or "gdb --args") 394 // command line. (Useful values might be "valgrind" or "gdb --args")
389 const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix"; 395 const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix";
390 396
391 // On POSIX only: use FIFO for IPC channels so that "unrelated" process 397 // On POSIX only: use FIFO for IPC channels so that "unrelated" process
392 // can connect to a channel, provided it knows its name. For debugging purposes. 398 // can connect to a channel, provided it knows its name. For debugging purposes.
393 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; 399 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo";
394 400
395 } // namespace switches 401 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698