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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 // Has no effect unless GPU rasterization is enabled. | 281 // Has no effect unless GPU rasterization is enabled. |
282 const char kDisableAcceleratedJpegDecoding[] = | 282 const char kDisableAcceleratedJpegDecoding[] = |
283 "disable-accelerated-jpeg-decoding"; | 283 "disable-accelerated-jpeg-decoding"; |
284 | 284 |
285 // Enable bleeding-edge code to make Chrome draw content faster. The changes | 285 // Enable bleeding-edge code to make Chrome draw content faster. The changes |
286 // behind this path are very likely to break lots of content. | 286 // behind this path are very likely to break lots of content. |
287 // ** DO NOT use this flag unless you know what you are doing. ** | 287 // ** DO NOT use this flag unless you know what you are doing. ** |
288 const char kEnableBleedingEdgeRenderingFastPaths[] = | 288 const char kEnableBleedingEdgeRenderingFastPaths[] = |
289 "enable-bleeding-edge-rendering-fast-paths"; | 289 "enable-bleeding-edge-rendering-fast-paths"; |
290 | 290 |
291 // Enables new cc/animation system (Project Heaviside). crbug.com/394772 | |
292 const char kEnableCompositorAnimationTimelines[] = | |
293 "enable-compositor-animation-timelines"; | |
294 | |
295 // Enables LCD text. | 291 // Enables LCD text. |
296 const char kEnableLCDText[] = "enable-lcd-text"; | 292 const char kEnableLCDText[] = "enable-lcd-text"; |
297 | 293 |
298 // Enables using signed distance fields when rendering text. | 294 // Enables using signed distance fields when rendering text. |
299 // Only valid if GPU rasterization is enabled as well. | 295 // Only valid if GPU rasterization is enabled as well. |
300 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 296 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
301 | 297 |
302 // Enable the experimental Credential Manager JavaScript API. | 298 // Enable the experimental Credential Manager JavaScript API. |
303 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; | 299 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; |
304 | 300 |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 // Windows Vista and later. | 987 // Windows Vista and later. |
992 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 988 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
993 #endif | 989 #endif |
994 | 990 |
995 // Enables the use of NPAPI plugins. | 991 // Enables the use of NPAPI plugins. |
996 const char kEnableNpapi[] = "enable-npapi"; | 992 const char kEnableNpapi[] = "enable-npapi"; |
997 | 993 |
998 // Don't dump stuff here, follow the same order as the header. | 994 // Don't dump stuff here, follow the same order as the header. |
999 | 995 |
1000 } // namespace switches | 996 } // namespace switches |
OLD | NEW |