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

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

Issue 9969181: Remove composite-to-texture flag and code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 8 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') | webkit/glue/webpreferences.h » ('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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 // Turns on the browser plugin. 226 // Turns on the browser plugin.
227 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; 227 const char kEnableBrowserPlugin[] = "enable-browser-plugin";
228 228
229 // Enables the creation of compositing layers for fixed position elements. 229 // Enables the creation of compositing layers for fixed position elements.
230 const char kEnableCompositingForFixedPosition[] = 230 const char kEnableCompositingForFixedPosition[] =
231 "enable-fixed-position-compositing"; 231 "enable-fixed-position-compositing";
232 232
233 // Enable deferred 2d canvas rendering. 233 // Enable deferred 2d canvas rendering.
234 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas"; 234 const char kEnableDeferred2dCanvas[] = "enable-deferred-2d-canvas";
235 235
236 // Enables compositing to texture instead of display.
237 const char kEnableCompositeToTexture[] = "enable-composite-to-texture";
238
239 // Enables CSS3 regions 236 // Enables CSS3 regions
240 const char kEnableCssRegions[] = "enable-css-regions"; 237 const char kEnableCssRegions[] = "enable-css-regions";
241 238
242 // Enables CSS3 custom filters 239 // Enables CSS3 custom filters
243 const char kEnableCssShaders[] = "enable-css-shaders"; 240 const char kEnableCssShaders[] = "enable-css-shaders";
244 241
245 // Enables device motion events. 242 // Enables device motion events.
246 const char kEnableDeviceMotion[] = "enable-device-motion"; 243 const char kEnableDeviceMotion[] = "enable-device-motion";
247 244
248 // Enables the fastback page cache. 245 // Enables the fastback page cache.
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; 660 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down";
664 661
665 // Maximum time between mousedown and mouseup to be considered a tap. 662 // Maximum time between mousedown and mouseup to be considered a tap.
666 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; 663 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap";
667 664
668 // Forces usage of the test compositor. Needed to run ui tests on bots. 665 // Forces usage of the test compositor. Needed to run ui tests on bots.
669 extern const char kTestCompositor[] = "test-compositor"; 666 extern const char kTestCompositor[] = "test-compositor";
670 #endif 667 #endif
671 668
672 } // namespace switches 669 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | webkit/glue/webpreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698