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

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

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 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
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 259
260 // Enables CSS3 regions 260 // Enables CSS3 regions
261 const char kEnableCssRegions[] = "enable-css-regions"; 261 const char kEnableCssRegions[] = "enable-css-regions";
262 262
263 // Enables CSS3 custom filters 263 // Enables CSS3 custom filters
264 const char kEnableCssShaders[] = "enable-css-shaders"; 264 const char kEnableCssShaders[] = "enable-css-shaders";
265 265
266 // Enables CSS variables 266 // Enables CSS variables
267 const char kEnableCssVariables[] = "enable-css-variables"; 267 const char kEnableCssVariables[] = "enable-css-variables";
268 268
269 // Enables delegated renderer.
270 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer";
271
269 // Enables device motion events. 272 // Enables device motion events.
270 const char kEnableDeviceMotion[] = "enable-device-motion"; 273 const char kEnableDeviceMotion[] = "enable-device-motion";
271 274
272 // Enables support for encrypted media. Current implementation is 275 // Enables support for encrypted media. Current implementation is
273 // incomplete and this flag is used for development and testing. 276 // incomplete and this flag is used for development and testing.
274 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; 277 const char kEnableEncryptedMedia[] = "enable-encrypted-media";
275 278
276 // Enables the fastback page cache. 279 // Enables the fastback page cache.
277 const char kEnableFastback[] = "enable-fastback"; 280 const char kEnableFastback[] = "enable-fastback";
278 281
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 // Sets the width and height above which a composited layer will get tiled. 708 // Sets the width and height above which a composited layer will get tiled.
706 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 709 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
707 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 710 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
708 711
709 const char kEnableFixedPositionCreatesStackingContext[] 712 const char kEnableFixedPositionCreatesStackingContext[]
710 = "enable-fixed-position-creates-stacking-context"; 713 = "enable-fixed-position-creates-stacking-context";
711 const char kDisableFixedPositionCreatesStackingContext[] 714 const char kDisableFixedPositionCreatesStackingContext[]
712 = "disable-fixed-position-creates-stacking-context"; 715 = "disable-fixed-position-creates-stacking-context";
713 716
714 } // namespace switches 717 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698