| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // Disable limits on the number of backing stores. Can prevent blinking for | 89 // Disable limits on the number of backing stores. Can prevent blinking for |
| 90 // users with many windows/tabs and lots of memory. | 90 // users with many windows/tabs and lots of memory. |
| 91 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 91 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
| 92 | 92 |
| 93 // Disable one or more Blink runtime-enabled features. | 93 // Disable one or more Blink runtime-enabled features. |
| 94 // Use names from RuntimeEnabledFeatures.in, separated by commas. | 94 // Use names from RuntimeEnabledFeatures.in, separated by commas. |
| 95 // Applied after kEnableBlinkFeatures, and after other flags that change these | 95 // Applied after kEnableBlinkFeatures, and after other flags that change these |
| 96 // features. | 96 // features. |
| 97 const char kDisableBlinkFeatures[] = "disable-blink-features"; | 97 const char kDisableBlinkFeatures[] = "disable-blink-features"; |
| 98 | 98 |
| 99 // Disables new cc/animation system (Project Heaviside). crbug.com/394772 | |
| 100 const char kDisableCompositorAnimationTimelines[] = | |
| 101 "disable-compositor-animation-timelines"; | |
| 102 | |
| 103 // Disables HTML5 DB support. | 99 // Disables HTML5 DB support. |
| 104 const char kDisableDatabases[] = "disable-databases"; | 100 const char kDisableDatabases[] = "disable-databases"; |
| 105 | 101 |
| 106 // Disables Delay Agnostic AEC in WebRTC. | 102 // Disables Delay Agnostic AEC in WebRTC. |
| 107 const char kDisableDelayAgnosticAec[] = "disable-delay-agnostic-aec"; | 103 const char kDisableDelayAgnosticAec[] = "disable-delay-agnostic-aec"; |
| 108 | 104 |
| 109 // Handles URL requests by NPAPI plugins through the renderer. | 105 // Handles URL requests by NPAPI plugins through the renderer. |
| 110 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; | 106 const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests"; |
| 111 | 107 |
| 112 // Disable the per-domain blocking for 3D APIs after GPU reset. | 108 // Disable the per-domain blocking for 3D APIs after GPU reset. |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1049 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1050 | 1046 |
| 1051 // Enables the exporting of the tracing events to ETW. This is only supported on | 1047 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1052 // Windows Vista and later. | 1048 // Windows Vista and later. |
| 1053 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1054 #endif | 1050 #endif |
| 1055 | 1051 |
| 1056 // Don't dump stuff here, follow the same order as the header. | 1052 // Don't dump stuff here, follow the same order as the header. |
| 1057 | 1053 |
| 1058 } // namespace switches | 1054 } // namespace switches |
| OLD | NEW |