OLD | NEW |
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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 | 927 |
928 // Causes SSL key material to be logged to the specified file for debugging | 928 // Causes SSL key material to be logged to the specified file for debugging |
929 // purposes. See | 929 // purposes. See |
930 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format | 930 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
931 // for the format. | 931 // for the format. |
932 const char kSSLKeyLogFile[] = "ssl-key-log-file"; | 932 const char kSSLKeyLogFile[] = "ssl-key-log-file"; |
933 | 933 |
934 // Starts the browser maximized, regardless of any previous settings. | 934 // Starts the browser maximized, regardless of any previous settings. |
935 const char kStartMaximized[] = "start-maximized"; | 935 const char kStartMaximized[] = "start-maximized"; |
936 | 936 |
| 937 // Starts the stack sampling profiler in the child process. |
| 938 const char kStartStackProfiler[] = "start-stack-profiler"; |
| 939 |
937 // Sets the supervised user ID for any loaded or newly created profile to the | 940 // Sets the supervised user ID for any loaded or newly created profile to the |
938 // given value. Pass an empty string to mark the profile as non-supervised. | 941 // given value. Pass an empty string to mark the profile as non-supervised. |
939 // Used for testing. | 942 // Used for testing. |
940 const char kSupervisedUserId[] = "managed-user-id"; | 943 const char kSupervisedUserId[] = "managed-user-id"; |
941 | 944 |
942 // Enables/disables SafeSites filtering for supervised users. Possible values | 945 // Enables/disables SafeSites filtering for supervised users. Possible values |
943 // are "enabled", "disabled", "blacklist-only", and "online-check-only". | 946 // are "enabled", "disabled", "blacklist-only", and "online-check-only". |
944 const char kSupervisedUserSafeSites[] = "supervised-user-safesites"; | 947 const char kSupervisedUserSafeSites[] = "supervised-user-safesites"; |
945 | 948 |
946 // Used to authenticate requests to the Sync service for supervised users. | 949 // Used to authenticate requests to the Sync service for supervised users. |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1343 | 1346 |
1344 // ----------------------------------------------------------------------------- | 1347 // ----------------------------------------------------------------------------- |
1345 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1348 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1346 // | 1349 // |
1347 // You were going to just dump your switches here, weren't you? Instead, please | 1350 // You were going to just dump your switches here, weren't you? Instead, please |
1348 // put them in alphabetical order above, or in order inside the appropriate | 1351 // put them in alphabetical order above, or in order inside the appropriate |
1349 // ifdef at the bottom. The order should match the header. | 1352 // ifdef at the bottom. The order should match the header. |
1350 // ----------------------------------------------------------------------------- | 1353 // ----------------------------------------------------------------------------- |
1351 | 1354 |
1352 } // namespace switches | 1355 } // namespace switches |
OLD | NEW |