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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 #endif | 753 #endif |
754 | 754 |
755 // Sets the tile size used by composited layers. | 755 // Sets the tile size used by composited layers. |
756 const char kDefaultTileWidth[] = "default-tile-width"; | 756 const char kDefaultTileWidth[] = "default-tile-width"; |
757 const char kDefaultTileHeight[] = "default-tile-height"; | 757 const char kDefaultTileHeight[] = "default-tile-height"; |
758 | 758 |
759 // Sets the width and height above which a composited layer will get tiled. | 759 // Sets the width and height above which a composited layer will get tiled. |
760 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 760 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
761 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 761 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
762 | 762 |
| 763 // Use ExynosVideoDecodeAccelerator for video decode (instead of SECOMX) |
| 764 const char kUseExynosVda[] = "use-exynos-vda"; |
| 765 |
763 const char kEnableFixedPositionCreatesStackingContext[] | 766 const char kEnableFixedPositionCreatesStackingContext[] |
764 = "enable-fixed-position-creates-stacking-context"; | 767 = "enable-fixed-position-creates-stacking-context"; |
765 const char kDisableFixedPositionCreatesStackingContext[] | 768 const char kDisableFixedPositionCreatesStackingContext[] |
766 = "disable-fixed-position-creates-stacking-context"; | 769 = "disable-fixed-position-creates-stacking-context"; |
767 | 770 |
768 // Defer image decoding in WebKit until painting. | 771 // Defer image decoding in WebKit until painting. |
769 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 772 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
770 | 773 |
771 // Enables history navigation in response to horizontal overscroll. | 774 // Enables history navigation in response to horizontal overscroll. |
772 const char kEnableOverscrollHistoryNavigation[] = | 775 const char kEnableOverscrollHistoryNavigation[] = |
773 "enable-overscroll-history-navigation"; | 776 "enable-overscroll-history-navigation"; |
774 | 777 |
775 } // namespace switches | 778 } // namespace switches |
OLD | NEW |