| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 // Disables usage of the namespace sandbox. | 218 // Disables usage of the namespace sandbox. |
| 219 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; | 219 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; |
| 220 | 220 |
| 221 // Disables native GPU memory buffer support. | 221 // Disables native GPU memory buffer support. |
| 222 const char kDisableNativeGpuMemoryBuffers[] = | 222 const char kDisableNativeGpuMemoryBuffers[] = |
| 223 "disable-native-gpu-memory-buffers"; | 223 "disable-native-gpu-memory-buffers"; |
| 224 | 224 |
| 225 // Disables the Web Notification and the Push APIs. | 225 // Disables the Web Notification and the Push APIs. |
| 226 const char kDisableNotifications[] = "disable-notifications"; | 226 const char kDisableNotifications[] = "disable-notifications"; |
| 227 | 227 |
| 228 // Disable partial raster in renderer. Disabling this switch also disables | 228 // Disable partial raster in the renderer. Disabling this switch also disables |
| 229 // the use of persistent gpu memory buffers. | 229 // the use of persistent gpu memory buffers. |
| 230 const char kDisablePartialRaster[] = "disable-partial-raster"; | 230 const char kDisablePartialRaster[] = "disable-partial-raster"; |
| 231 | 231 |
| 232 // Enable partial raster in the renderer. |
| 233 const char kEnablePartialRaster[] = "enable-partial-raster"; |
| 234 |
| 232 // Disable Pepper3D. | 235 // Disable Pepper3D. |
| 233 const char kDisablePepper3d[] = "disable-pepper-3d"; | 236 const char kDisablePepper3d[] = "disable-pepper-3d"; |
| 234 | 237 |
| 235 // Disables the Permissions API. | 238 // Disables the Permissions API. |
| 236 const char kDisablePermissionsAPI[] = "disable-permissions-api"; | 239 const char kDisablePermissionsAPI[] = "disable-permissions-api"; |
| 237 | 240 |
| 238 // Disables compositor-accelerated touch-screen pinch gestures. | 241 // Disables compositor-accelerated touch-screen pinch gestures. |
| 239 const char kDisablePinch[] = "disable-pinch"; | 242 const char kDisablePinch[] = "disable-pinch"; |
| 240 | 243 |
| 241 // Disable discovering third-party plugins. Effectively loading only | 244 // Disable discovering third-party plugins. Effectively loading only |
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1047 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1045 | 1048 |
| 1046 // Enables the exporting of the tracing events to ETW. This is only supported on | 1049 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1047 // Windows Vista and later. | 1050 // Windows Vista and later. |
| 1048 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1051 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1049 #endif | 1052 #endif |
| 1050 | 1053 |
| 1051 // Don't dump stuff here, follow the same order as the header. | 1054 // Don't dump stuff here, follow the same order as the header. |
| 1052 | 1055 |
| 1053 } // namespace switches | 1056 } // namespace switches |
| OLD | NEW |