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

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

Issue 1403863002: Enable exporting SSLKEYLOGFILE on Android w/ command line arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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') | net/socket/ssl_client_socket.h » ('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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 const char kServiceProcess[] = "service"; 968 const char kServiceProcess[] = "service";
969 969
970 // If true the app list will be shown. 970 // If true the app list will be shown.
971 const char kShowAppList[] = "show-app-list"; 971 const char kShowAppList[] = "show-app-list";
972 972
973 // Command line flag offering a "Show saved copy" option to the user if offline. 973 // Command line flag offering a "Show saved copy" option to the user if offline.
974 // The various modes are disabled, primary, or secondary. Primary/secondary 974 // The various modes are disabled, primary, or secondary. Primary/secondary
975 // refers to button placement (for experiment). 975 // refers to button placement (for experiment).
976 const char kShowSavedCopy[] = "show-saved-copy"; 976 const char kShowSavedCopy[] = "show-saved-copy";
977 977
978 // Causes SSL key material to be logged to the specified file for debugging
979 // purposes. See
980 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
981 // for the format.
982 const char kSSLKeyLogFile[] = "ssl-key-log-file";
983
978 // Values for the kShowSavedCopy flag. 984 // Values for the kShowSavedCopy flag.
979 const char kEnableShowSavedCopyPrimary[] = "primary"; 985 const char kEnableShowSavedCopyPrimary[] = "primary";
980 const char kEnableShowSavedCopySecondary[] = "secondary"; 986 const char kEnableShowSavedCopySecondary[] = "secondary";
981 const char kDisableShowSavedCopy[] = "disable"; 987 const char kDisableShowSavedCopy[] = "disable";
982 988
983 // Does not show an infobar when an extension attaches to a page using 989 // Does not show an infobar when an extension attaches to a page using
984 // chrome.debugger page. Required to attach to extension background pages. 990 // chrome.debugger page. Required to attach to extension background pages.
985 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; 991 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api";
986 992
987 // Causes Chrome to launch without opening any windows by default. Useful if 993 // Causes Chrome to launch without opening any windows by default. Useful if
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1414 1420
1415 // ----------------------------------------------------------------------------- 1421 // -----------------------------------------------------------------------------
1416 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1422 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1417 // 1423 //
1418 // You were going to just dump your switches here, weren't you? Instead, please 1424 // You were going to just dump your switches here, weren't you? Instead, please
1419 // put them in alphabetical order above, or in order inside the appropriate 1425 // put them in alphabetical order above, or in order inside the appropriate
1420 // ifdef at the bottom. The order should match the header. 1426 // ifdef at the bottom. The order should match the header.
1421 // ----------------------------------------------------------------------------- 1427 // -----------------------------------------------------------------------------
1422 1428
1423 } // namespace switches 1429 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/socket/ssl_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698