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