| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 // Disables hardware acceleration of video decode, where available. | 115 // Disables hardware acceleration of video decode, where available. |
| 116 const char kDisableAcceleratedVideoDecode[] = | 116 const char kDisableAcceleratedVideoDecode[] = |
| 117 "disable-accelerated-video-decode"; | 117 "disable-accelerated-video-decode"; |
| 118 | 118 |
| 119 // Disables the alternate window station for the renderer. | 119 // Disables the alternate window station for the renderer. |
| 120 const char kDisableAltWinstation[] = "disable-winsta"; | 120 const char kDisableAltWinstation[] = "disable-winsta"; |
| 121 | 121 |
| 122 // Disable the ApplicationCache. | 122 // Disable the ApplicationCache. |
| 123 const char kDisableApplicationCache[] = "disable-application-cache"; | 123 const char kDisableApplicationCache[] = "disable-application-cache"; |
| 124 // | |
| 125 // TODO(scherkus): remove --disable-audio when we have a proper fallback | |
| 126 // mechanism. | |
| 127 const char kDisableAudio[] = "disable-audio"; | |
| 128 | 124 |
| 129 // Disable limits on the number of backing stores. Can prevent blinking for | 125 // Disable limits on the number of backing stores. Can prevent blinking for |
| 130 // users with many windows/tabs and lots of memory. | 126 // users with many windows/tabs and lots of memory. |
| 131 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; | 127 const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; |
| 132 | 128 |
| 133 // Disable browser plugin compositing experiment. | 129 // Disable browser plugin compositing experiment. |
| 134 const char kDisableBrowserPluginCompositing[] = | 130 const char kDisableBrowserPluginCompositing[] = |
| 135 "disable-browser-plugin-compositing"; | 131 "disable-browser-plugin-compositing"; |
| 136 | 132 |
| 137 // Disable accelerated scrolling by the compositor for frames. | 133 // Disable accelerated scrolling by the compositor for frames. |
| (...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 #endif | 1048 #endif |
| 1053 | 1049 |
| 1054 #if defined(OS_POSIX) | 1050 #if defined(OS_POSIX) |
| 1055 // Causes the child processes to cleanly exit via calling exit(). | 1051 // Causes the child processes to cleanly exit via calling exit(). |
| 1056 const char kChildCleanExit[] = "child-clean-exit"; | 1052 const char kChildCleanExit[] = "child-clean-exit"; |
| 1057 #endif | 1053 #endif |
| 1058 | 1054 |
| 1059 // Don't dump stuff here, follow the same order as the header. | 1055 // Don't dump stuff here, follow the same order as the header. |
| 1060 | 1056 |
| 1061 } // namespace switches | 1057 } // namespace switches |
| OLD | NEW |