| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // Disables the alternate window station for the renderer. | 112 // Disables the alternate window station for the renderer. |
| 113 const char kDisableAltWinstation[] = "disable-winsta"; | 113 const char kDisableAltWinstation[] = "disable-winsta"; |
| 114 | 114 |
| 115 // Disable the ApplicationCache. | 115 // Disable the ApplicationCache. |
| 116 const char kDisableApplicationCache[] = "disable-application-cache"; | 116 const char kDisableApplicationCache[] = "disable-application-cache"; |
| 117 | 117 |
| 118 // Disable limits on the number of backing stores. Can prevent blinking for | 118 // Disable limits on the number of backing stores. Can prevent blinking for |
| 119 // users with many windows/tabs and lots of memory. | 119 // users with many windows/tabs and lots of memory. |
| 120 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 120 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
| 121 | 121 |
| 122 // Disable browser plugin compositing experiment. | |
| 123 const char kDisableBrowserPluginCompositing[] = | |
| 124 "disable-browser-plugin-compositing"; | |
| 125 | |
| 126 // See comment for kEnableCompositingForFixedPosition. | 122 // See comment for kEnableCompositingForFixedPosition. |
| 127 const char kDisableCompositingForFixedPosition[] = | 123 const char kDisableCompositingForFixedPosition[] = |
| 128 "disable-fixed-position-compositing"; | 124 "disable-fixed-position-compositing"; |
| 129 | 125 |
| 130 // See comment for kEnableCompositingForTransition. | 126 // See comment for kEnableCompositingForTransition. |
| 131 const char kDisableCompositingForTransition[] = | 127 const char kDisableCompositingForTransition[] = |
| 132 "disable-transition-compositing"; | 128 "disable-transition-compositing"; |
| 133 | 129 |
| 134 // Disables HTML5 DB support. | 130 // Disables HTML5 DB support. |
| 135 const char kDisableDatabases[] = "disable-databases"; | 131 const char kDisableDatabases[] = "disable-databases"; |
| (...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 | 1026 |
| 1031 // Disables support for Core Animation plugins. This is triggered when | 1027 // Disables support for Core Animation plugins. This is triggered when |
| 1032 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1028 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1033 const char kDisableCoreAnimationPlugins[] = | 1029 const char kDisableCoreAnimationPlugins[] = |
| 1034 "disable-core-animation-plugins"; | 1030 "disable-core-animation-plugins"; |
| 1035 #endif | 1031 #endif |
| 1036 | 1032 |
| 1037 // Don't dump stuff here, follow the same order as the header. | 1033 // Don't dump stuff here, follow the same order as the header. |
| 1038 | 1034 |
| 1039 } // namespace switches | 1035 } // namespace switches |
| OLD | NEW |