| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; | 451 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; |
| 452 | 452 |
| 453 // Enables TRACE for GL calls in the renderer. | 453 // Enables TRACE for GL calls in the renderer. |
| 454 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 454 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
| 455 | 455 |
| 456 // See comment for kEnableCompositingForFixedPosition. | 456 // See comment for kEnableCompositingForFixedPosition. |
| 457 const char kEnableHighDpiCompositingForFixedPosition[] = | 457 const char kEnableHighDpiCompositingForFixedPosition[] = |
| 458 "enable-high-dpi-fixed-position-compositing"; | 458 "enable-high-dpi-fixed-position-compositing"; |
| 459 | 459 |
| 460 #if defined(OS_WIN) | 460 #if defined(OS_WIN) |
| 461 // Enables the DirectWrite font rendering system on windows. |
| 462 const char kEnableDirectWrite[] = "enable-direct-write"; |
| 463 |
| 461 // Use high resolution timers for TimeTicks. | 464 // Use high resolution timers for TimeTicks. |
| 462 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; | 465 const char kEnableHighResolutionTime[] = "enable-high-resolution-time"; |
| 463 #endif | 466 #endif |
| 464 | 467 |
| 465 // Enable HTML Imports | 468 // Enable HTML Imports |
| 466 extern const char kEnableHTMLImports[] = "enable-html-imports"; | 469 extern const char kEnableHTMLImports[] = "enable-html-imports"; |
| 467 | 470 |
| 468 // Enables support for inband text tracks in media content. | 471 // Enables support for inband text tracks in media content. |
| 469 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; | 472 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; |
| 470 | 473 |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 #endif | 1034 #endif |
| 1032 | 1035 |
| 1033 #if defined(OS_POSIX) | 1036 #if defined(OS_POSIX) |
| 1034 // Causes the child processes to cleanly exit via calling exit(). | 1037 // Causes the child processes to cleanly exit via calling exit(). |
| 1035 const char kChildCleanExit[] = "child-clean-exit"; | 1038 const char kChildCleanExit[] = "child-clean-exit"; |
| 1036 #endif | 1039 #endif |
| 1037 | 1040 |
| 1038 // Don't dump stuff here, follow the same order as the header. | 1041 // Don't dump stuff here, follow the same order as the header. |
| 1039 | 1042 |
| 1040 } // namespace switches | 1043 } // namespace switches |
| OLD | NEW |