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

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

Issue 328903004: SSL Connect Job Waiting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Redesigned cache accessing functions. Created 6 years, 6 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
OLDNEW
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 #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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 // running a tab's onunload js handler independently of the GUI - 492 // running a tab's onunload js handler independently of the GUI -
493 // crbug.com/142458 . 493 // crbug.com/142458 .
494 const char kEnableFastUnload[] = "enable-fast-unload"; 494 const char kEnableFastUnload[] = "enable-fast-unload";
495 495
496 // Enables IPv6 support, even if probes suggest that it may not be fully 496 // Enables IPv6 support, even if probes suggest that it may not be fully
497 // supported. Some probes may require internet connections, and this flag will 497 // supported. Some probes may require internet connections, and this flag will
498 // allow support independent of application testing. This flag overrides 498 // allow support independent of application testing. This flag overrides
499 // "disable-ipv6" which appears elswhere in this file. 499 // "disable-ipv6" which appears elswhere in this file.
500 const char kEnableIPv6[] = "enable-ipv6"; 500 const char kEnableIPv6[] = "enable-ipv6";
501 501
502 // Allows a feature that holds back some SSLConnectJobs in order to
503 // maximize the number of full SSL handshakes completed.
wtc 2014/06/17 17:44:39 Nit: Allows => Enables Typo: maximize => minimize
mshelley1 2014/06/18 18:53:49 Done.
504 const char kEnableSSLConnectJobWaiting[] = "enable-ssl-connect-job-waiting";
505
502 // Enables experimentation with launching ephemeral apps via hyperlinks. 506 // Enables experimentation with launching ephemeral apps via hyperlinks.
503 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; 507 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps";
504 508
505 // Runs the Native Client inside the renderer process and enables GPU plugin 509 // Runs the Native Client inside the renderer process and enables GPU plugin
506 // (internally adds lEnableGpuPlugin to the command line). 510 // (internally adds lEnableGpuPlugin to the command line).
507 const char kEnableNaCl[] = "enable-nacl"; 511 const char kEnableNaCl[] = "enable-nacl";
508 512
509 // Enables the network-related benchmarking extensions. 513 // Enables the network-related benchmarking extensions.
510 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; 514 const char kEnableNetBenchmarking[] = "enable-net-benchmarking";
511 515
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1391
1388 // ----------------------------------------------------------------------------- 1392 // -----------------------------------------------------------------------------
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1390 // 1394 //
1391 // You were going to just dump your switches here, weren't you? Instead, please 1395 // You were going to just dump your switches here, weren't you? Instead, please
1392 // put them in alphabetical order above, or in order inside the appropriate 1396 // put them in alphabetical order above, or in order inside the appropriate
1393 // ifdef at the bottom. The order should match the header. 1397 // ifdef at the bottom. The order should match the header.
1394 // ----------------------------------------------------------------------------- 1398 // -----------------------------------------------------------------------------
1395 1399
1396 } // namespace switches 1400 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698