| 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 458 |
| 459 // Enable the fast text autosizing implementation. | 459 // Enable the fast text autosizing implementation. |
| 460 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; | 460 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; |
| 461 | 461 |
| 462 const char kEnableFixedPositionCreatesStackingContext[] | 462 const char kEnableFixedPositionCreatesStackingContext[] |
| 463 = "enable-fixed-position-creates-stacking-context"; | 463 = "enable-fixed-position-creates-stacking-context"; |
| 464 | 464 |
| 465 // Enable Gesture Tap Highlight | 465 // Enable Gesture Tap Highlight |
| 466 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; | 466 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; |
| 467 | 467 |
| 468 // Enables the GPU benchmarking extension | |
| 469 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; | |
| 470 | |
| 471 // Enables TRACE for GL calls in the renderer. | 468 // Enables TRACE for GL calls in the renderer. |
| 472 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 469 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
| 473 | 470 |
| 474 // See comment for kEnableCompositingForFixedPosition. | 471 // See comment for kEnableCompositingForFixedPosition. |
| 475 const char kEnableHighDpiCompositingForFixedPosition[] = | 472 const char kEnableHighDpiCompositingForFixedPosition[] = |
| 476 "enable-high-dpi-fixed-position-compositing"; | 473 "enable-high-dpi-fixed-position-compositing"; |
| 477 | 474 |
| 478 #if defined(OS_WIN) | 475 #if defined(OS_WIN) |
| 479 // Enables the DirectWrite font rendering system on windows. | 476 // Enables the DirectWrite font rendering system on windows. |
| 480 const char kEnableDirectWrite[] = "enable-direct-write"; | 477 const char kEnableDirectWrite[] = "enable-direct-write"; |
| (...skipping 581 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 |