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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 | 567 |
568 // Enable the Vtune profiler support. | 568 // Enable the Vtune profiler support. |
569 const char kEnableVtune[] = "enable-vtune-support"; | 569 const char kEnableVtune[] = "enable-vtune-support"; |
570 | 570 |
571 // Enable SVG Animations on the Web Animations model. | 571 // Enable SVG Animations on the Web Animations model. |
572 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; | 572 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; |
573 | 573 |
574 // Enables WebGL extensions not yet approved by the community. | 574 // Enables WebGL extensions not yet approved by the community. |
575 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 575 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
576 | 576 |
| 577 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 578 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 579 |
577 // Enables Web MIDI API. | 580 // Enables Web MIDI API. |
578 const char kEnableWebMIDI[] = "enable-web-midi"; | 581 const char kEnableWebMIDI[] = "enable-web-midi"; |
579 | 582 |
580 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 583 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
581 const char kEnableZeroCopy[] = "enable-zero-copy"; | 584 const char kEnableZeroCopy[] = "enable-zero-copy"; |
582 | 585 |
583 // Load NPAPI plugins from the specified directory. | 586 // Load NPAPI plugins from the specified directory. |
584 const char kExtraPluginDir[] = "extra-plugin-dir"; | 587 const char kExtraPluginDir[] = "extra-plugin-dir"; |
585 | 588 |
586 // Enable force_compositing_mode in layout tests. | 589 // Enable force_compositing_mode in layout tests. |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 | 999 |
997 // Disables support for Core Animation plugins. This is triggered when | 1000 // Disables support for Core Animation plugins. This is triggered when |
998 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1001 // accelerated compositing is disabled. See http://crbug.com/122430 . |
999 const char kDisableCoreAnimationPlugins[] = | 1002 const char kDisableCoreAnimationPlugins[] = |
1000 "disable-core-animation-plugins"; | 1003 "disable-core-animation-plugins"; |
1001 #endif | 1004 #endif |
1002 | 1005 |
1003 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
1004 | 1007 |
1005 } // namespace switches | 1008 } // namespace switches |
OLD | NEW |