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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 const char kUseExynosVda[] = "use-exynos-vda"; | 813 const char kUseExynosVda[] = "use-exynos-vda"; |
814 | 814 |
815 const char kEnableFixedPositionCreatesStackingContext[] | 815 const char kEnableFixedPositionCreatesStackingContext[] |
816 = "enable-fixed-position-creates-stacking-context"; | 816 = "enable-fixed-position-creates-stacking-context"; |
817 const char kDisableFixedPositionCreatesStackingContext[] | 817 const char kDisableFixedPositionCreatesStackingContext[] |
818 = "disable-fixed-position-creates-stacking-context"; | 818 = "disable-fixed-position-creates-stacking-context"; |
819 | 819 |
820 // Defer image decoding in WebKit until painting. | 820 // Defer image decoding in WebKit until painting. |
821 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 821 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
822 | 822 |
823 // Use a vsync signal from the browser to the renderer to schedule rendering. | 823 // Use a begin frame signal from browser to renderer to schedule rendering. |
824 const char kEnableVsyncNotification[] = "enable-vsync-notification"; | 824 const char kEnableBeginFrameScheduling[] = "enable-begin-frame-scheduling"; |
| 825 |
| 826 // Synchronize delivery and response of input events to and from the renderer. |
| 827 const char kEnableBrowserInputController[] = "enable-browser-input-controller"; |
825 | 828 |
826 // Enables or disables history navigation in response to horizontal overscroll. | 829 // Enables or disables history navigation in response to horizontal overscroll. |
827 // Set the value to '1' to enable the feature, and set to '0' to disable. | 830 // Set the value to '1' to enable the feature, and set to '0' to disable. |
828 // Defaults to enabled. | 831 // Defaults to enabled. |
829 const char kOverscrollHistoryNavigation[] = | 832 const char kOverscrollHistoryNavigation[] = |
830 "overscroll-history-navigation"; | 833 "overscroll-history-navigation"; |
831 | 834 |
832 // Forward overscroll event data from the renderer to the browser. | 835 // Forward overscroll event data from the renderer to the browser. |
833 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 836 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
834 | 837 |
835 // Enables 'image/webp' accept header for image requests. | 838 // Enables 'image/webp' accept header for image requests. |
836 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; | 839 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; |
837 | 840 |
838 } // namespace switches | 841 } // namespace switches |
OLD | NEW |