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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 // Enable gpu-accelerated SVG/W3C filters. | 248 // Enable gpu-accelerated SVG/W3C filters. |
249 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; | 249 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; |
250 | 250 |
251 // Turns on extremely verbose logging of accessibility events. | 251 // Turns on extremely verbose logging of accessibility events. |
252 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; | 252 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; |
253 | 253 |
254 // Enables the creation of compositing layers for fixed position elements. | 254 // Enables the creation of compositing layers for fixed position elements. |
255 const char kEnableCompositingForFixedPosition[] = | 255 const char kEnableCompositingForFixedPosition[] = |
256 "enable-fixed-position-compositing"; | 256 "enable-fixed-position-compositing"; |
257 | 257 |
| 258 // Enables CSS3 exclusions |
| 259 const char kEnableCssExclusions[] = "enable-css-exclusions"; |
| 260 |
258 // Enables CSS3 regions | 261 // Enables CSS3 regions |
259 const char kEnableCssRegions[] = "enable-css-regions"; | 262 const char kEnableCssRegions[] = "enable-css-regions"; |
260 | 263 |
261 // Enables CSS3 custom filters | 264 // Enables CSS3 custom filters |
262 const char kEnableCssShaders[] = "enable-css-shaders"; | 265 const char kEnableCssShaders[] = "enable-css-shaders"; |
263 | 266 |
264 // Enables CSS variables | 267 // Enables CSS variables |
265 const char kEnableCssVariables[] = "enable-css-variables"; | 268 const char kEnableCssVariables[] = "enable-css-variables"; |
266 | 269 |
267 // Enables device motion events. | 270 // Enables device motion events. |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 // Sets the width and height above which a composited layer will get tiled. | 706 // Sets the width and height above which a composited layer will get tiled. |
704 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 707 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
705 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 708 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
706 | 709 |
707 const char kEnableFixedPositionCreatesStackingContext[] | 710 const char kEnableFixedPositionCreatesStackingContext[] |
708 = "enable-fixed-position-creates-stacking-context"; | 711 = "enable-fixed-position-creates-stacking-context"; |
709 const char kDisableFixedPositionCreatesStackingContext[] | 712 const char kDisableFixedPositionCreatesStackingContext[] |
710 = "disable-fixed-position-creates-stacking-context"; | 713 = "disable-fixed-position-creates-stacking-context"; |
711 | 714 |
712 } // namespace switches | 715 } // namespace switches |
OLD | NEW |