| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 const char kDisableAcceleratedJpegDecoding[] = | 318 const char kDisableAcceleratedJpegDecoding[] = |
| 319 "disable-accelerated-jpeg-decoding"; | 319 "disable-accelerated-jpeg-decoding"; |
| 320 | 320 |
| 321 // Enables LCD text. | 321 // Enables LCD text. |
| 322 const char kEnableLCDText[] = "enable-lcd-text"; | 322 const char kEnableLCDText[] = "enable-lcd-text"; |
| 323 | 323 |
| 324 // Enables using signed distance fields when rendering text. | 324 // Enables using signed distance fields when rendering text. |
| 325 // Only valid if GPU rasterization is enabled as well. | 325 // Only valid if GPU rasterization is enabled as well. |
| 326 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 326 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
| 327 | 327 |
| 328 // Enable the experimental Credential Manager JavaScript API. |
| 329 const char kEnableCredentialManagerAPI[] = "enable-credential-manager-api"; |
| 330 |
| 328 // Enable the creation of compositing layers when it would prevent LCD text. | 331 // Enable the creation of compositing layers when it would prevent LCD text. |
| 329 const char kEnablePreferCompositingToLCDText[] = | 332 const char kEnablePreferCompositingToLCDText[] = |
| 330 "enable-prefer-compositing-to-lcd-text"; | 333 "enable-prefer-compositing-to-lcd-text"; |
| 331 | 334 |
| 332 // Disable one or more Blink runtime-enabled features. | 335 // Disable one or more Blink runtime-enabled features. |
| 333 // Use names from RuntimeEnabledFeatures.in, separated by commas. | 336 // Use names from RuntimeEnabledFeatures.in, separated by commas. |
| 334 // Applied before kDisableBlinkFeatures, and after other flags that change these | 337 // Applied before kDisableBlinkFeatures, and after other flags that change these |
| 335 // features. | 338 // features. |
| 336 const char kEnableBlinkFeatures[] = "enable-blink-features"; | 339 const char kEnableBlinkFeatures[] = "enable-blink-features"; |
| 337 | 340 |
| (...skipping 706 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 |