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