| 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 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| 10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 const char kDisableApplicationCache[] = "disable-application-cache"; | 116 const char kDisableApplicationCache[] = "disable-application-cache"; |
| 117 // | 117 // |
| 118 // TODO(scherkus): remove --disable-audio when we have a proper fallback | 118 // TODO(scherkus): remove --disable-audio when we have a proper fallback |
| 119 // mechanism. | 119 // mechanism. |
| 120 const char kDisableAudio[] = "disable-audio"; | 120 const char kDisableAudio[] = "disable-audio"; |
| 121 | 121 |
| 122 // Disable limits on the number of backing stores. Can prevent blinking for | 122 // Disable limits on the number of backing stores. Can prevent blinking for |
| 123 // users with many windows/tabs and lots of memory. | 123 // users with many windows/tabs and lots of memory. |
| 124 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 124 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
| 125 | 125 |
| 126 // Enables browser plugin compositing experiment. | 126 // Disable browser plugin compositing experiment. |
| 127 const char kDisableBrowserPluginCompositing[] = | 127 const char kDisableBrowserPluginCompositing[] = |
| 128 "disable-browser-plugin-compositing"; | 128 "disable-browser-plugin-compositing"; |
| 129 | 129 |
| 130 // Disable accelerated scrolling by the compositor for frames. | 130 // Disable accelerated scrolling by the compositor for frames. |
| 131 const char kDisableCompositedScrollingForFrames[] = | 131 const char kDisableCompositedScrollingForFrames[] = |
| 132 "disable-composited-scrolling-for-frames"; | 132 "disable-composited-scrolling-for-frames"; |
| 133 | 133 |
| 134 // See comment for kEnableCompositingForFixedPosition. | 134 // See comment for kEnableCompositingForFixedPosition. |
| 135 const char kDisableCompositingForFixedPosition[] = | 135 const char kDisableCompositingForFixedPosition[] = |
| 136 "disable-fixed-position-compositing"; | 136 "disable-fixed-position-compositing"; |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 #endif | 1042 #endif |
| 1043 | 1043 |
| 1044 #if defined(OS_POSIX) | 1044 #if defined(OS_POSIX) |
| 1045 // Causes the child processes to cleanly exit via calling exit(). | 1045 // Causes the child processes to cleanly exit via calling exit(). |
| 1046 const char kChildCleanExit[] = "child-clean-exit"; | 1046 const char kChildCleanExit[] = "child-clean-exit"; |
| 1047 #endif | 1047 #endif |
| 1048 | 1048 |
| 1049 // Don't dump stuff here, follow the same order as the header. | 1049 // Don't dump stuff here, follow the same order as the header. |
| 1050 | 1050 |
| 1051 } // namespace switches | 1051 } // namespace switches |
| OLD | NEW |