| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 // Disable 3D inside of flapper. | 181 // Disable 3D inside of flapper. |
| 182 const char kDisableFlash3d[] = "disable-flash-3d"; | 182 const char kDisableFlash3d[] = "disable-flash-3d"; |
| 183 | 183 |
| 184 // Disable Stage3D inside of flapper. | 184 // Disable Stage3D inside of flapper. |
| 185 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; | 185 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; |
| 186 | 186 |
| 187 // This flag disables force compositing mode and prevents it from being enabled | 187 // This flag disables force compositing mode and prevents it from being enabled |
| 188 // via field trials. | 188 // via field trials. |
| 189 const char kDisableForceCompositingMode[] = "disable-force-compositing-mode"; | 189 const char kDisableForceCompositingMode[] = "disable-force-compositing-mode"; |
| 190 | 190 |
| 191 // Disable the JavaScript Full Screen API. | |
| 192 const char kDisableFullScreen[] = "disable-fullscreen"; | |
| 193 | |
| 194 // Disable deferral of scroll-ending gesture events when a scroll is active. | 191 // Disable deferral of scroll-ending gesture events when a scroll is active. |
| 195 const char kDisableGestureDebounce[] = "disable-gesture-debounce"; | 192 const char kDisableGestureDebounce[] = "disable-gesture-debounce"; |
| 196 | 193 |
| 197 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; | 194 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; |
| 198 | 195 |
| 199 // Disable GL multisampling. | 196 // Disable GL multisampling. |
| 200 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; | 197 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; |
| 201 | 198 |
| 202 // Disables GPU hardware acceleration. If software renderer is not in place, | 199 // Disables GPU hardware acceleration. If software renderer is not in place, |
| 203 // then the GPU process won't launch. | 200 // then the GPU process won't launch. |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 #endif | 1057 #endif |
| 1061 | 1058 |
| 1062 #if defined(OS_POSIX) | 1059 #if defined(OS_POSIX) |
| 1063 // Causes the child processes to cleanly exit via calling exit(). | 1060 // Causes the child processes to cleanly exit via calling exit(). |
| 1064 const char kChildCleanExit[] = "child-clean-exit"; | 1061 const char kChildCleanExit[] = "child-clean-exit"; |
| 1065 #endif | 1062 #endif |
| 1066 | 1063 |
| 1067 // Don't dump stuff here, follow the same order as the header. | 1064 // Don't dump stuff here, follow the same order as the header. |
| 1068 | 1065 |
| 1069 } // namespace switches | 1066 } // namespace switches |
| OLD | NEW |