| 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 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 const char kUseExynosVda[] = "use-exynos-vda"; | 792 const char kUseExynosVda[] = "use-exynos-vda"; |
| 793 | 793 |
| 794 const char kEnableFixedPositionCreatesStackingContext[] | 794 const char kEnableFixedPositionCreatesStackingContext[] |
| 795 = "enable-fixed-position-creates-stacking-context"; | 795 = "enable-fixed-position-creates-stacking-context"; |
| 796 const char kDisableFixedPositionCreatesStackingContext[] | 796 const char kDisableFixedPositionCreatesStackingContext[] |
| 797 = "disable-fixed-position-creates-stacking-context"; | 797 = "disable-fixed-position-creates-stacking-context"; |
| 798 | 798 |
| 799 // Defer image decoding in WebKit until painting. | 799 // Defer image decoding in WebKit until painting. |
| 800 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 800 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
| 801 | 801 |
| 802 // Disables history navigation in response to horizontal overscroll. | 802 // Enables history navigation in response to horizontal overscroll. |
| 803 const char kDisableOverscrollHistoryNavigation[] = | 803 const char kEnableOverscrollHistoryNavigation[] = |
| 804 "disable-overscroll-history-navigation"; | 804 "enable-overscroll-history-navigation"; |
| 805 | 805 |
| 806 } // namespace switches | 806 } // namespace switches |
| OLD | NEW |