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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 const char kEnableLCDText[] = "enable-lcd-text"; | 340 const char kEnableLCDText[] = "enable-lcd-text"; |
341 | 341 |
342 // Enables using signed distance fields when rendering text. | 342 // Enables using signed distance fields when rendering text. |
343 // Only valid if GPU rasterization is enabled as well. | 343 // Only valid if GPU rasterization is enabled as well. |
344 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; | 344 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; |
345 | 345 |
346 // Enable the creation of compositing layers when it would prevent LCD text. | 346 // Enable the creation of compositing layers when it would prevent LCD text. |
347 const char kEnablePreferCompositingToLCDText[] = | 347 const char kEnablePreferCompositingToLCDText[] = |
348 "enable-prefer-compositing-to-lcd-text"; | 348 "enable-prefer-compositing-to-lcd-text"; |
349 | 349 |
350 // Disable one or more Blink runtime-enabled features. | 350 // Enable one or more Blink runtime-enabled features. |
351 // Use names from RuntimeEnabledFeatures.in, separated by commas. | 351 // Use names from RuntimeEnabledFeatures.in, separated by commas. |
352 // Applied before kDisableBlinkFeatures, and after other flags that change these | 352 // Applied before kDisableBlinkFeatures, and after other flags that change these |
353 // features. | 353 // features. |
354 const char kEnableBlinkFeatures[] = "enable-blink-features"; | 354 const char kEnableBlinkFeatures[] = "enable-blink-features"; |
355 | 355 |
356 // PlzNavigate: Use the experimental browser-side navigation path. | 356 // PlzNavigate: Use the experimental browser-side navigation path. |
357 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; | 357 const char kEnableBrowserSideNavigation[] = "enable-browser-side-navigation"; |
358 | 358 |
359 // Enables display list based 2d canvas implementation. Options: | 359 // Enables display list based 2d canvas implementation. Options: |
360 // 1. Enable: allow browser to use display list for 2d canvas (browser makes | 360 // 1. Enable: allow browser to use display list for 2d canvas (browser makes |
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1092 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1092 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1094 | 1094 |
1095 // Specifies the testcase used by the IPC fuzzer. | 1095 // Specifies the testcase used by the IPC fuzzer. |
1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1097 #endif | 1097 #endif |
1098 | 1098 |
1099 // Don't dump stuff here, follow the same order as the header. | 1099 // Don't dump stuff here, follow the same order as the header. |
1100 | 1100 |
1101 } // namespace switches | 1101 } // namespace switches |
OLD | NEW |