| 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 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "disable-hide-inactive-stacked-tab-close-buttons"; | 186 "disable-hide-inactive-stacked-tab-close-buttons"; |
| 187 | 187 |
| 188 // Disable the RenderThread's HistogramCustomizer. | 188 // Disable the RenderThread's HistogramCustomizer. |
| 189 const char kDisableHistogramCustomizer[] = "disable-histogram-customizer"; | 189 const char kDisableHistogramCustomizer[] = "disable-histogram-customizer"; |
| 190 | 190 |
| 191 // Don't kill a child process when it sends a bad IPC message. Apart | 191 // Don't kill a child process when it sends a bad IPC message. Apart |
| 192 // from testing, it is a bad idea from a security perspective to enable | 192 // from testing, it is a bad idea from a security perspective to enable |
| 193 // this switch. | 193 // this switch. |
| 194 const char kDisableKillAfterBadIPC[] = "disable-kill-after-bad-ipc"; | 194 const char kDisableKillAfterBadIPC[] = "disable-kill-after-bad-ipc"; |
| 195 | 195 |
| 196 // Enables prefixed Encrypted Media API (e.g. webkitGenerateKeyRequest()). | |
| 197 const char kEnablePrefixedEncryptedMedia[] = | |
| 198 "enable-prefixed-encrypted-media"; | |
| 199 | |
| 200 // Disables LCD text. | 196 // Disables LCD text. |
| 201 const char kDisableLCDText[] = "disable-lcd-text"; | 197 const char kDisableLCDText[] = "disable-lcd-text"; |
| 202 | 198 |
| 203 // Disables distance field text. | 199 // Disables distance field text. |
| 204 const char kDisableDistanceFieldText[] = "disable-distance-field-text"; | 200 const char kDisableDistanceFieldText[] = "disable-distance-field-text"; |
| 205 | 201 |
| 206 // Disable LocalStorage. | 202 // Disable LocalStorage. |
| 207 const char kDisableLocalStorage[] = "disable-local-storage"; | 203 const char kDisableLocalStorage[] = "disable-local-storage"; |
| 208 | 204 |
| 209 // Force logging to be disabled. Logging is enabled by default in debug | 205 // Force logging to be disabled. Logging is enabled by default in debug |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1043 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1048 | 1044 |
| 1049 // Enables the exporting of the tracing events to ETW. This is only supported on | 1045 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1050 // Windows Vista and later. | 1046 // Windows Vista and later. |
| 1051 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1047 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1052 #endif | 1048 #endif |
| 1053 | 1049 |
| 1054 // Don't dump stuff here, follow the same order as the header. | 1050 // Don't dump stuff here, follow the same order as the header. |
| 1055 | 1051 |
| 1056 } // namespace switches | 1052 } // namespace switches |
| OLD | NEW |