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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "disable-accelerated-overflow-scroll"; | 91 "disable-accelerated-overflow-scroll"; |
92 | 92 |
93 // Disables layer squashing. | 93 // Disables layer squashing. |
94 const char kDisableLayerSquashing[] = | 94 const char kDisableLayerSquashing[] = |
95 "disable-layer-squashing"; | 95 "disable-layer-squashing"; |
96 | 96 |
97 // Disables hardware acceleration of video decode, where available. | 97 // Disables hardware acceleration of video decode, where available. |
98 const char kDisableAcceleratedVideoDecode[] = | 98 const char kDisableAcceleratedVideoDecode[] = |
99 "disable-accelerated-video-decode"; | 99 "disable-accelerated-video-decode"; |
100 | 100 |
101 // Disables the alternate window station for the renderer. | |
102 const char kDisableAltWinstation[] = "disable-winsta"; | |
103 | |
104 // Disable the ApplicationCache. | 101 // Disable the ApplicationCache. |
105 const char kDisableApplicationCache[] = "disable-application-cache"; | 102 const char kDisableApplicationCache[] = "disable-application-cache"; |
106 | 103 |
107 // Disable limits on the number of backing stores. Can prevent blinking for | 104 // Disable limits on the number of backing stores. Can prevent blinking for |
108 // users with many windows/tabs and lots of memory. | 105 // users with many windows/tabs and lots of memory. |
109 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 106 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
110 | 107 |
111 // See comment for kEnableCompositingForFixedPosition. | 108 // See comment for kEnableCompositingForFixedPosition. |
112 const char kDisableCompositingForFixedPosition[] = | 109 const char kDisableCompositingForFixedPosition[] = |
113 "disable-fixed-position-compositing"; | 110 "disable-fixed-position-compositing"; |
(...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
978 | 975 |
979 // Disables support for Core Animation plugins. This is triggered when | 976 // Disables support for Core Animation plugins. This is triggered when |
980 // accelerated compositing is disabled. See http://crbug.com/122430 . | 977 // accelerated compositing is disabled. See http://crbug.com/122430 . |
981 const char kDisableCoreAnimationPlugins[] = | 978 const char kDisableCoreAnimationPlugins[] = |
982 "disable-core-animation-plugins"; | 979 "disable-core-animation-plugins"; |
983 #endif | 980 #endif |
984 | 981 |
985 // Don't dump stuff here, follow the same order as the header. | 982 // Don't dump stuff here, follow the same order as the header. |
986 | 983 |
987 } // namespace switches | 984 } // namespace switches |
OLD | NEW |