| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 // Enables LCD text. | 295 // Enables LCD text. |
| 296 const char kEnableLCDText[] = "enable-lcd-text"; | 296 const char kEnableLCDText[] = "enable-lcd-text"; |
| 297 | 297 |
| 298 // Enables using signed distance fields when rendering text. | 298 // Enables using signed distance fields when rendering text. |
| 299 // Only valid if GPU rasterization is enabled as well. | 299 // Only valid if GPU rasterization is enabled as well. |
| 300 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 300 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 301 | 301 |
| 302 // Enable the experimental Credential Manager JavaScript API. | 302 // Enable the experimental Credential Manager JavaScript API. |
| 303 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; | 303 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; |
| 304 | 304 |
| 305 // Use a BeginFrame signal from browser to renderer to schedule rendering. |
| 306 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
| 307 |
| 305 // Enable the creation of compositing layers when it would prevent LCD text. | 308 // Enable the creation of compositing layers when it would prevent LCD text. |
| 306 const char kEnablePreferCompositingToLCDText[] = | 309 const char kEnablePreferCompositingToLCDText[] = |
| 307 "enable-prefer-compositing-to-lcd-text"; | 310 "enable-prefer-compositing-to-lcd-text"; |
| 308 | 311 |
| 309 // Disable one or more Blink runtime-enabled features. | 312 // Disable one or more Blink runtime-enabled features. |
| 310 // Use names from RuntimeEnabledFeatures.in, separated by commas. | 313 // Use names from RuntimeEnabledFeatures.in, separated by commas. |
| 311 // Applied before kDisableBlinkFeatures, and after other flags that change these | 314 // Applied before kDisableBlinkFeatures, and after other flags that change these |
| 312 // features. | 315 // features. |
| 313 const char kEnableBlinkFeatures[] = "enable-blink-features"; | 316 const char kEnableBlinkFeatures[] = "enable-blink-features"; |
| 314 | 317 |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 // Windows Vista and later. | 989 // Windows Vista and later. |
| 987 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 990 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 988 #endif | 991 #endif |
| 989 | 992 |
| 990 // Enables the use of NPAPI plugins. | 993 // Enables the use of NPAPI plugins. |
| 991 const char kEnableNpapi[] = "enable-npapi"; | 994 const char kEnableNpapi[] = "enable-npapi"; |
| 992 | 995 |
| 993 // Don't dump stuff here, follow the same order as the header. | 996 // Don't dump stuff here, follow the same order as the header. |
| 994 | 997 |
| 995 } // namespace switches | 998 } // namespace switches |
| OLD | NEW |