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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 #include "media/media_features.h" | 7 #include "media/media_features.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 const char kDisableGpuAsyncWorkerContext[] = "disable-gpu-async-worker-context"; | 167 const char kDisableGpuAsyncWorkerContext[] = "disable-gpu-async-worker-context"; |
168 | 168 |
169 // When using CPU rasterizing disable low resolution tiling. This uses | 169 // When using CPU rasterizing disable low resolution tiling. This uses |
170 // less power, particularly during animations, but more white may be seen | 170 // less power, particularly during animations, but more white may be seen |
171 // during fast scrolling especially on slower devices. | 171 // during fast scrolling especially on slower devices. |
172 const char kDisableLowResTiling[] = "disable-low-res-tiling"; | 172 const char kDisableLowResTiling[] = "disable-low-res-tiling"; |
173 | 173 |
174 // Disable the GPU process sandbox. | 174 // Disable the GPU process sandbox. |
175 const char kDisableGpuSandbox[] = "disable-gpu-sandbox"; | 175 const char kDisableGpuSandbox[] = "disable-gpu-sandbox"; |
176 | 176 |
177 // Disable in-process stack traces. | |
178 const char kDisableInProcessStackTraces[] = "disable-in-process-stack-traces"; | |
179 | |
180 // Suppresses hang monitor dialogs in renderer processes. This may allow slow | 177 // Suppresses hang monitor dialogs in renderer processes. This may allow slow |
181 // unload handlers on a page to prevent the tab from closing, but the Task | 178 // unload handlers on a page to prevent the tab from closing, but the Task |
182 // Manager can be used to terminate the offending process in this case. | 179 // Manager can be used to terminate the offending process in this case. |
183 const char kDisableHangMonitor[] = "disable-hang-monitor"; | 180 const char kDisableHangMonitor[] = "disable-hang-monitor"; |
184 | 181 |
185 // Disable hiding the close buttons of inactive tabs when the tabstrip is in | 182 // Disable hiding the close buttons of inactive tabs when the tabstrip is in |
186 // stacked mode. | 183 // stacked mode. |
187 const char kDisableHideInactiveStackedTabCloseButtons[] = | 184 const char kDisableHideInactiveStackedTabCloseButtons[] = |
188 "disable-hide-inactive-stacked-tab-close-buttons"; | 185 "disable-hide-inactive-stacked-tab-close-buttons"; |
189 | 186 |
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1085 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1082 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1086 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1083 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1087 | 1084 |
1088 // Specifies the testcase used by the IPC fuzzer. | 1085 // Specifies the testcase used by the IPC fuzzer. |
1089 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1086 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1090 #endif | 1087 #endif |
1091 | 1088 |
1092 // Don't dump stuff here, follow the same order as the header. | 1089 // Don't dump stuff here, follow the same order as the header. |
1093 | 1090 |
1094 } // namespace switches | 1091 } // namespace switches |
OLD | NEW |