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

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

Issue 935663004: Add checkbox for reporting invalid TLS/SSL cert chains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert accidental deletion (fixes failing CaptivePortal tests) Created 5 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('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) 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 "enable-extension-activity-logging"; 447 "enable-extension-activity-logging";
448 448
449 const char kEnableExtensionActivityLogTesting[] = 449 const char kEnableExtensionActivityLogTesting[] =
450 "enable-extension-activity-log-testing"; 450 "enable-extension-activity-log-testing";
451 451
452 // Enable the fast unload controller, which speeds up tab/window close by 452 // Enable the fast unload controller, which speeds up tab/window close by
453 // running a tab's onunload js handler independently of the GUI - 453 // running a tab's onunload js handler independently of the GUI -
454 // crbug.com/142458 . 454 // crbug.com/142458 .
455 const char kEnableFastUnload[] = "enable-fast-unload"; 455 const char kEnableFastUnload[] = "enable-fast-unload";
456 456
457 // Enable opt-in for the collection of invalid TLS/SSL certificate chains.
458 const char kEnableInvalidCertCollection[] = "enable-invalid-cert-collection";
459
457 // Enables IPv6 support, even if probes suggest that it may not be fully 460 // Enables IPv6 support, even if probes suggest that it may not be fully
458 // supported. Some probes may require internet connections, and this flag will 461 // supported. Some probes may require internet connections, and this flag will
459 // allow support independent of application testing. This flag overrides 462 // allow support independent of application testing. This flag overrides
460 // "disable-ipv6" which appears elswhere in this file. 463 // "disable-ipv6" which appears elswhere in this file.
461 const char kEnableIPv6[] = "enable-ipv6"; 464 const char kEnableIPv6[] = "enable-ipv6";
462 465
463 // Enables experimentation with launching ephemeral apps via hyperlinks. 466 // Enables experimentation with launching ephemeral apps via hyperlinks.
464 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; 467 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps";
465 468
466 // Enables the material design Settings feature. 469 // Enables the material design Settings feature.
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1390
1388 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1392 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1390 // 1393 //
1391 // You were going to just dump your switches here, weren't you? Instead, please 1394 // 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 1395 // put them in alphabetical order above, or in order inside the appropriate
1393 // ifdef at the bottom. The order should match the header. 1396 // ifdef at the bottom. The order should match the header.
1394 // ----------------------------------------------------------------------------- 1397 // -----------------------------------------------------------------------------
1395 1398
1396 } // namespace switches 1399 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698