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

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: fix styling on checkbox for SSL interstitial 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
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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 "enable-extension-activity-logging"; 433 "enable-extension-activity-logging";
434 434
435 const char kEnableExtensionActivityLogTesting[] = 435 const char kEnableExtensionActivityLogTesting[] =
436 "enable-extension-activity-log-testing"; 436 "enable-extension-activity-log-testing";
437 437
438 // Enable the fast unload controller, which speeds up tab/window close by 438 // Enable the fast unload controller, which speeds up tab/window close by
439 // running a tab's onunload js handler independently of the GUI - 439 // running a tab's onunload js handler independently of the GUI -
440 // crbug.com/142458 . 440 // crbug.com/142458 .
441 const char kEnableFastUnload[] = "enable-fast-unload"; 441 const char kEnableFastUnload[] = "enable-fast-unload";
442 442
443 // Enable opt-in for the collection of invalid TLS/SSL certificate chains.
444 const char kEnableInvalidCertCollection[] = "enable-invalid-cert-collection";
445
443 // Enables IPv6 support, even if probes suggest that it may not be fully 446 // Enables IPv6 support, even if probes suggest that it may not be fully
444 // supported. Some probes may require internet connections, and this flag will 447 // supported. Some probes may require internet connections, and this flag will
445 // allow support independent of application testing. This flag overrides 448 // allow support independent of application testing. This flag overrides
446 // "disable-ipv6" which appears elswhere in this file. 449 // "disable-ipv6" which appears elswhere in this file.
447 const char kEnableIPv6[] = "enable-ipv6"; 450 const char kEnableIPv6[] = "enable-ipv6";
448 451
449 // Enables experimentation with launching ephemeral apps via hyperlinks. 452 // Enables experimentation with launching ephemeral apps via hyperlinks.
450 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; 453 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps";
451 454
452 // Enables the material design Settings feature. 455 // Enables the material design Settings feature.
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 1377
1375 // ----------------------------------------------------------------------------- 1378 // -----------------------------------------------------------------------------
1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1377 // 1380 //
1378 // You were going to just dump your switches here, weren't you? Instead, please 1381 // You were going to just dump your switches here, weren't you? Instead, please
1379 // put them in alphabetical order above, or in order inside the appropriate 1382 // put them in alphabetical order above, or in order inside the appropriate
1380 // ifdef at the bottom. The order should match the header. 1383 // ifdef at the bottom. The order should match the header.
1381 // ----------------------------------------------------------------------------- 1384 // -----------------------------------------------------------------------------
1382 1385
1383 } // namespace switches 1386 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698