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 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
241 // Turns on extremely verbose logging of accessibility events. | 241 // Turns on extremely verbose logging of accessibility events. |
242 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 242 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
243 | 243 |
244 // Enables the creation of compositing layers for fixed position elements. | 244 // Enables the creation of compositing layers for fixed position elements. |
245 const char kEnableCompositingForFixedPosition[] = | 245 const char kEnableCompositingForFixedPosition[] = |
246 "enable-fixed-position-compositing"; | 246 "enable-fixed-position-compositing"; |
247 | 247 |
248 // Enables CSS3 regions | 248 // Enables CSS3 regions |
249 const char kEnableCssRegions[] = "enable-css-regions"; | 249 const char kEnableCssRegions[] = "enable-css-regions"; |
250 | 250 |
251 // Enables CSS3 variables | |
Roland Steiner
2012/07/24 05:58:55
CSS3 (?)
| |
252 const char kEnableCssVariables[] = "enable-css-variables"; | |
253 | |
251 // Enables CSS3 custom filters | 254 // Enables CSS3 custom filters |
252 const char kEnableCssShaders[] = "enable-css-shaders"; | 255 const char kEnableCssShaders[] = "enable-css-shaders"; |
253 | 256 |
254 // Enables device motion events. | 257 // Enables device motion events. |
255 const char kEnableDeviceMotion[] = "enable-device-motion"; | 258 const char kEnableDeviceMotion[] = "enable-device-motion"; |
256 | 259 |
257 // Enables support for encrypted media. Current implementation is | 260 // Enables support for encrypted media. Current implementation is |
258 // incomplete and this flag is used for development and testing. | 261 // incomplete and this flag is used for development and testing. |
259 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 262 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
260 | 263 |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
666 const char kDefaultTileWidth[] = "default-tile-width"; | 669 const char kDefaultTileWidth[] = "default-tile-width"; |
667 const char kDefaultTileHeight[] = "default-tile-height"; | 670 const char kDefaultTileHeight[] = "default-tile-height"; |
668 | 671 |
669 // Sets the width and height above which a composited layer will get tiled. | 672 // Sets the width and height above which a composited layer will get tiled. |
670 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 673 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
671 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 674 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
672 | 675 |
673 const char kFixedPositionCreatesStackingContext[] | 676 const char kFixedPositionCreatesStackingContext[] |
674 = "fixed-position-creates-stacking-context"; | 677 = "fixed-position-creates-stacking-context"; |
675 } // namespace switches | 678 } // namespace switches |
OLD | NEW |