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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 #endif | 733 #endif |
734 | 734 |
735 // Sets the tile size used by composited layers. | 735 // Sets the tile size used by composited layers. |
736 const char kDefaultTileWidth[] = "default-tile-width"; | 736 const char kDefaultTileWidth[] = "default-tile-width"; |
737 const char kDefaultTileHeight[] = "default-tile-height"; | 737 const char kDefaultTileHeight[] = "default-tile-height"; |
738 | 738 |
739 // Sets the width and height above which a composited layer will get tiled. | 739 // Sets the width and height above which a composited layer will get tiled. |
740 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 740 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
741 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 741 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
742 | 742 |
| 743 // die secomx die |
| 744 const char kUseExynosVda[] = "use-exynos-vda"; |
| 745 |
743 const char kEnableFixedPositionCreatesStackingContext[] | 746 const char kEnableFixedPositionCreatesStackingContext[] |
744 = "enable-fixed-position-creates-stacking-context"; | 747 = "enable-fixed-position-creates-stacking-context"; |
745 const char kDisableFixedPositionCreatesStackingContext[] | 748 const char kDisableFixedPositionCreatesStackingContext[] |
746 = "disable-fixed-position-creates-stacking-context"; | 749 = "disable-fixed-position-creates-stacking-context"; |
747 | 750 |
748 // Defer image decoding in WebKit until painting. | 751 // Defer image decoding in WebKit until painting. |
749 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 752 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
750 | 753 |
751 // Enables history navigation in response to horizontal overscroll. | 754 // Enables history navigation in response to horizontal overscroll. |
752 const char kEnableOverscrollHistoryNavigation[] = | 755 const char kEnableOverscrollHistoryNavigation[] = |
753 "enable-overscroll-history-navigation"; | 756 "enable-overscroll-history-navigation"; |
754 | 757 |
755 } // namespace switches | 758 } // namespace switches |
OLD | NEW |