| 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 | 599 |
| 600 // Enables the use of the legacy viewport meta tag. Turning this on also | 600 // Enables the use of the legacy viewport meta tag. Turning this on also |
| 601 // turns on the @viewport CSS rule | 601 // turns on the @viewport CSS rule |
| 602 const char kEnableViewportMeta[] = "enable-viewport-meta"; | 602 const char kEnableViewportMeta[] = "enable-viewport-meta"; |
| 603 | 603 |
| 604 // Resizes of the main frame are the caused by changing between landscape | 604 // Resizes of the main frame are the caused by changing between landscape |
| 605 // and portrait mode (i.e. Android) so the page should be rescaled to fit | 605 // and portrait mode (i.e. Android) so the page should be rescaled to fit |
| 606 const char kMainFrameResizesAreOrientationChanges[] = | 606 const char kMainFrameResizesAreOrientationChanges[] = |
| 607 "main-frame-resizes-are-orientation-changes"; | 607 "main-frame-resizes-are-orientation-changes"; |
| 608 | 608 |
| 609 // Enables moving cursor by word in visual order. | |
| 610 const char kEnableVisualWordMovement[] = "enable-visual-word-movement"; | |
| 611 | |
| 612 // Enable the Vtune profiler support. | 609 // Enable the Vtune profiler support. |
| 613 const char kEnableVtune[] = "enable-vtune-support"; | 610 const char kEnableVtune[] = "enable-vtune-support"; |
| 614 | 611 |
| 615 // Enable CSS Transitions / Animations on the Web Animations model. | 612 // Enable CSS Transitions / Animations on the Web Animations model. |
| 616 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; | 613 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; |
| 617 | 614 |
| 618 // Enable SVG Animations on the Web Animations model. | 615 // Enable SVG Animations on the Web Animations model. |
| 619 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; | 616 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; |
| 620 | 617 |
| 621 // Enables WebGL extensions not yet approved by the community. | 618 // Enables WebGL extensions not yet approved by the community. |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 #endif | 1055 #endif |
| 1059 | 1056 |
| 1060 #if defined(OS_POSIX) | 1057 #if defined(OS_POSIX) |
| 1061 // Causes the child processes to cleanly exit via calling exit(). | 1058 // Causes the child processes to cleanly exit via calling exit(). |
| 1062 const char kChildCleanExit[] = "child-clean-exit"; | 1059 const char kChildCleanExit[] = "child-clean-exit"; |
| 1063 #endif | 1060 #endif |
| 1064 | 1061 |
| 1065 // Don't dump stuff here, follow the same order as the header. | 1062 // Don't dump stuff here, follow the same order as the header. |
| 1066 | 1063 |
| 1067 } // namespace switches | 1064 } // namespace switches |
| OLD | NEW |