| 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 // and portrait mode (i.e. Android) so the page should be rescaled to fit | 569 // and portrait mode (i.e. Android) so the page should be rescaled to fit |
| 570 const char kMainFrameResizesAreOrientationChanges[] = | 570 const char kMainFrameResizesAreOrientationChanges[] = |
| 571 "main-frame-resizes-are-orientation-changes"; | 571 "main-frame-resizes-are-orientation-changes"; |
| 572 | 572 |
| 573 // Enables moving cursor by word in visual order. | 573 // Enables moving cursor by word in visual order. |
| 574 const char kEnableVisualWordMovement[] = "enable-visual-word-movement"; | 574 const char kEnableVisualWordMovement[] = "enable-visual-word-movement"; |
| 575 | 575 |
| 576 // Enable the Vtune profiler support. | 576 // Enable the Vtune profiler support. |
| 577 const char kEnableVtune[] = "enable-vtune-support"; | 577 const char kEnableVtune[] = "enable-vtune-support"; |
| 578 | 578 |
| 579 // Disable CSS Transitions / Animations on the Web Animations model. |
| 580 const char kDisableWebAnimationsCSS[] = "disable-web-animations-css"; |
| 581 |
| 579 // Enable CSS Transitions / Animations on the Web Animations model. | 582 // Enable CSS Transitions / Animations on the Web Animations model. |
| 580 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; | 583 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; |
| 581 | 584 |
| 582 // Enable SVG Animations on the Web Animations model. | 585 // Enable SVG Animations on the Web Animations model. |
| 583 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; | 586 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; |
| 584 | 587 |
| 585 // Enables WebGL extensions not yet approved by the community. | 588 // Enables WebGL extensions not yet approved by the community. |
| 586 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 589 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 587 | 590 |
| 588 // Enables Web MIDI API. | 591 // Enables Web MIDI API. |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 #endif | 1008 #endif |
| 1006 | 1009 |
| 1007 #if defined(OS_POSIX) | 1010 #if defined(OS_POSIX) |
| 1008 // Causes the child processes to cleanly exit via calling exit(). | 1011 // Causes the child processes to cleanly exit via calling exit(). |
| 1009 const char kChildCleanExit[] = "child-clean-exit"; | 1012 const char kChildCleanExit[] = "child-clean-exit"; |
| 1010 #endif | 1013 #endif |
| 1011 | 1014 |
| 1012 // Don't dump stuff here, follow the same order as the header. | 1015 // Don't dump stuff here, follow the same order as the header. |
| 1013 | 1016 |
| 1014 } // namespace switches | 1017 } // namespace switches |
| OLD | NEW |