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