Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: content/public/common/content_switches.cc

Issue 278363002: Add a command line flag to enable WebGL overlay support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added chrome_restart_request.cc Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698