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

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

Issue 23503038: Make using virtual contexts a workaround flag rather than cmdline (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comment Created 7 years, 3 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') | gpu/config/gpu_driver_bug_list_json.cc » ('j') | 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 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 511
512 // Enable screen capturing support for MediaStream API. 512 // Enable screen capturing support for MediaStream API.
513 const char kEnableUserMediaScreenCapturing[] = 513 const char kEnableUserMediaScreenCapturing[] =
514 "enable-usermedia-screen-capturing"; 514 "enable-usermedia-screen-capturing";
515 515
516 // Enables the use of the viewport meta tag, which allows 516 // Enables the use of the viewport meta tag, which allows
517 // pages to control aspects of their own layout. This also turns on touch-screen 517 // pages to control aspects of their own layout. This also turns on touch-screen
518 // pinch gestures. 518 // pinch gestures.
519 const char kEnableViewport[] = "enable-viewport"; 519 const char kEnableViewport[] = "enable-viewport";
520 520
521 // Allow GL contexts to be automatically virtualized (shared between command
522 // buffer clients) if they are compatible.
523 const char kEnableVirtualGLContexts[] = "enable-virtual-gl-contexts";
524
525 // Enables moving cursor by word in visual order. 521 // Enables moving cursor by word in visual order.
526 const char kEnableVisualWordMovement[] = "enable-visual-word-movement"; 522 const char kEnableVisualWordMovement[] = "enable-visual-word-movement";
527 523
528 // Enable the Vtune profiler support. 524 // Enable the Vtune profiler support.
529 const char kEnableVtune[] = "enable-vtune-support"; 525 const char kEnableVtune[] = "enable-vtune-support";
530 526
531 // Enable CSS Transitions / Animations on the Web Animations model. 527 // Enable CSS Transitions / Animations on the Web Animations model.
532 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css"; 528 const char kEnableWebAnimationsCSS[] = "enable-web-animations-css";
533 529
534 // Enable SVG Animations on the Web Animations model. 530 // Enable SVG Animations on the Web Animations model.
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 #endif 952 #endif
957 953
958 #if defined(USE_AURA) 954 #if defined(USE_AURA)
959 // Forces usage of the test compositor. Needed to run ui tests on bots. 955 // Forces usage of the test compositor. Needed to run ui tests on bots.
960 extern const char kTestCompositor[] = "test-compositor"; 956 extern const char kTestCompositor[] = "test-compositor";
961 #endif 957 #endif
962 958
963 // Don't dump stuff here, follow the same order as the header. 959 // Don't dump stuff here, follow the same order as the header.
964 960
965 } // namespace switches 961 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | gpu/config/gpu_driver_bug_list_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698