| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 | 451 |
| 452 // Enable the fast text autosizing implementation. | 452 // Enable the fast text autosizing implementation. |
| 453 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; | 453 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; |
| 454 | 454 |
| 455 const char kEnableFixedPositionCreatesStackingContext[] | 455 const char kEnableFixedPositionCreatesStackingContext[] |
| 456 = "enable-fixed-position-creates-stacking-context"; | 456 = "enable-fixed-position-creates-stacking-context"; |
| 457 | 457 |
| 458 // Enable Gesture Tap Highlight | 458 // Enable Gesture Tap Highlight |
| 459 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; | 459 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; |
| 460 | 460 |
| 461 // Enables the GPU benchmarking extension | |
| 462 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; | |
| 463 | |
| 464 // Enables TRACE for GL calls in the renderer. | 461 // Enables TRACE for GL calls in the renderer. |
| 465 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 462 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
| 466 | 463 |
| 467 // See comment for kEnableCompositingForFixedPosition. | 464 // See comment for kEnableCompositingForFixedPosition. |
| 468 const char kEnableHighDpiCompositingForFixedPosition[] = | 465 const char kEnableHighDpiCompositingForFixedPosition[] = |
| 469 "enable-high-dpi-fixed-position-compositing"; | 466 "enable-high-dpi-fixed-position-compositing"; |
| 470 | 467 |
| 471 #if defined(OS_WIN) | 468 #if defined(OS_WIN) |
| 472 // Enables the DirectWrite font rendering system on windows. | 469 // Enables the DirectWrite font rendering system on windows. |
| 473 const char kEnableDirectWrite[] = "enable-direct-write"; | 470 const char kEnableDirectWrite[] = "enable-direct-write"; |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 #endif | 1059 #endif |
| 1063 | 1060 |
| 1064 #if defined(OS_POSIX) | 1061 #if defined(OS_POSIX) |
| 1065 // Causes the child processes to cleanly exit via calling exit(). | 1062 // Causes the child processes to cleanly exit via calling exit(). |
| 1066 const char kChildCleanExit[] = "child-clean-exit"; | 1063 const char kChildCleanExit[] = "child-clean-exit"; |
| 1067 #endif | 1064 #endif |
| 1068 | 1065 |
| 1069 // Don't dump stuff here, follow the same order as the header. | 1066 // Don't dump stuff here, follow the same order as the header. |
| 1070 | 1067 |
| 1071 } // namespace switches | 1068 } // namespace switches |
| OLD | NEW |