| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 // Disables distance field text. | 209 // Disables distance field text. |
| 210 const char kDisableDistanceFieldText[] = "disable-distance-field-text"; | 210 const char kDisableDistanceFieldText[] = "disable-distance-field-text"; |
| 211 | 211 |
| 212 // Disable LocalStorage. | 212 // Disable LocalStorage. |
| 213 const char kDisableLocalStorage[] = "disable-local-storage"; | 213 const char kDisableLocalStorage[] = "disable-local-storage"; |
| 214 | 214 |
| 215 // Force logging to be disabled. Logging is enabled by default in debug | 215 // Force logging to be disabled. Logging is enabled by default in debug |
| 216 // builds. | 216 // builds. |
| 217 const char kDisableLogging[] = "disable-logging"; | 217 const char kDisableLogging[] = "disable-logging"; |
| 218 | 218 |
| 219 // Disables using CODECAPI_AVLowLatencyMode when creating DXVA decoders. |
| 220 const char kDisableLowLatencyDxva[] = "disable-low-latency-dxva"; |
| 221 |
| 219 // Disables usage of the namespace sandbox. | 222 // Disables usage of the namespace sandbox. |
| 220 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; | 223 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; |
| 221 | 224 |
| 222 // Disables native GPU memory buffer support. | 225 // Disables native GPU memory buffer support. |
| 223 const char kDisableNativeGpuMemoryBuffers[] = | 226 const char kDisableNativeGpuMemoryBuffers[] = |
| 224 "disable-native-gpu-memory-buffers"; | 227 "disable-native-gpu-memory-buffers"; |
| 225 | 228 |
| 226 // Disables the Web Notification and the Push APIs. | 229 // Disables the Web Notification and the Push APIs. |
| 227 const char kDisableNotifications[] = "disable-notifications"; | 230 const char kDisableNotifications[] = "disable-notifications"; |
| 228 | 231 |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1070 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1068 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1071 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1069 | 1072 |
| 1070 // Specifies the testcase used by the IPC fuzzer. | 1073 // Specifies the testcase used by the IPC fuzzer. |
| 1071 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1072 #endif | 1075 #endif |
| 1073 | 1076 |
| 1074 // Don't dump stuff here, follow the same order as the header. | 1077 // Don't dump stuff here, follow the same order as the header. |
| 1075 | 1078 |
| 1076 } // namespace switches | 1079 } // namespace switches |
| OLD | NEW |