| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "disable-accelerated-overflow-scroll"; | 99 "disable-accelerated-overflow-scroll"; |
| 100 | 100 |
| 101 // Disables layer squashing. | 101 // Disables layer squashing. |
| 102 const char kDisableLayerSquashing[] = | 102 const char kDisableLayerSquashing[] = |
| 103 "disable-layer-squashing"; | 103 "disable-layer-squashing"; |
| 104 | 104 |
| 105 // Disable accelerated compositing for scrollable frames. | 105 // Disable accelerated compositing for scrollable frames. |
| 106 const char kDisableAcceleratedScrollableFrames[] = | 106 const char kDisableAcceleratedScrollableFrames[] = |
| 107 "disable-accelerated-scrollable-frames"; | 107 "disable-accelerated-scrollable-frames"; |
| 108 | 108 |
| 109 // Disables the hardware acceleration of plugins. | |
| 110 const char kDisableAcceleratedPlugins[] = "disable-accelerated-plugins"; | |
| 111 | |
| 112 // Disables GPU accelerated video display. | 109 // Disables GPU accelerated video display. |
| 113 const char kDisableAcceleratedVideo[] = "disable-accelerated-video"; | 110 const char kDisableAcceleratedVideo[] = "disable-accelerated-video"; |
| 114 | 111 |
| 115 // Disables hardware acceleration of video decode, where available. | 112 // Disables hardware acceleration of video decode, where available. |
| 116 const char kDisableAcceleratedVideoDecode[] = | 113 const char kDisableAcceleratedVideoDecode[] = |
| 117 "disable-accelerated-video-decode"; | 114 "disable-accelerated-video-decode"; |
| 118 | 115 |
| 119 // Disables the alternate window station for the renderer. | 116 // Disables the alternate window station for the renderer. |
| 120 const char kDisableAltWinstation[] = "disable-winsta"; | 117 const char kDisableAltWinstation[] = "disable-winsta"; |
| 121 | 118 |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 #endif | 1049 #endif |
| 1053 | 1050 |
| 1054 #if defined(OS_POSIX) | 1051 #if defined(OS_POSIX) |
| 1055 // Causes the child processes to cleanly exit via calling exit(). | 1052 // Causes the child processes to cleanly exit via calling exit(). |
| 1056 const char kChildCleanExit[] = "child-clean-exit"; | 1053 const char kChildCleanExit[] = "child-clean-exit"; |
| 1057 #endif | 1054 #endif |
| 1058 | 1055 |
| 1059 // Don't dump stuff here, follow the same order as the header. | 1056 // Don't dump stuff here, follow the same order as the header. |
| 1060 | 1057 |
| 1061 } // namespace switches | 1058 } // namespace switches |
| OLD | NEW |