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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 #endif | 668 #endif |
669 | 669 |
670 // Sets the tile size used by composited layers. | 670 // Sets the tile size used by composited layers. |
671 const char kDefaultTileWidth[] = "default-tile-width"; | 671 const char kDefaultTileWidth[] = "default-tile-width"; |
672 const char kDefaultTileHeight[] = "default-tile-height"; | 672 const char kDefaultTileHeight[] = "default-tile-height"; |
673 | 673 |
674 // Sets the width and height above which a composited layer will get tiled. | 674 // Sets the width and height above which a composited layer will get tiled. |
675 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 675 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
676 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 676 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
677 | 677 |
678 const char kFixedPositionCreatesStackingContext[] | 678 const char kEnableFixedPositionCreatesStackingContext[] |
679 = "fixed-position-creates-stacking-context"; | 679 = "enable-fixed-position-creates-stacking-context"; |
| 680 const char kDisableFixedPositionCreatesStackingContext[] |
| 681 = "disable-fixed-position-creates-stacking-context"; |
| 682 |
680 } // namespace switches | 683 } // namespace switches |
OLD | NEW |