| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 142 |
| 143 // Disable experimental WebGL support. | 143 // Disable experimental WebGL support. |
| 144 const char kDisableExperimentalWebGL[] = "disable-webgl"; | 144 const char kDisableExperimentalWebGL[] = "disable-webgl"; |
| 145 | 145 |
| 146 // Disable the fast text autosizing implementation. | 146 // Disable the fast text autosizing implementation. |
| 147 const char kDisableFastTextAutosizing[] = "disable-fast-text-autosizing"; | 147 const char kDisableFastTextAutosizing[] = "disable-fast-text-autosizing"; |
| 148 | 148 |
| 149 // Disable FileSystem API. | 149 // Disable FileSystem API. |
| 150 const char kDisableFileSystem[] = "disable-file-system"; | 150 const char kDisableFileSystem[] = "disable-file-system"; |
| 151 | 151 |
| 152 // Disables sending filters (SkImageFilter objects) between processes over IPC | |
| 153 const char kDisableFiltersOverIPC[] = "disable-filters-over-ipc"; | |
| 154 | |
| 155 // Disable 3D inside of flapper. | 152 // Disable 3D inside of flapper. |
| 156 const char kDisableFlash3d[] = "disable-flash-3d"; | 153 const char kDisableFlash3d[] = "disable-flash-3d"; |
| 157 | 154 |
| 158 // Disable Stage3D inside of flapper. | 155 // Disable Stage3D inside of flapper. |
| 159 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; | 156 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; |
| 160 | 157 |
| 161 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; | 158 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; |
| 162 | 159 |
| 163 // Disable GL multisampling. | 160 // Disable GL multisampling. |
| 164 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; | 161 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 | 985 |
| 989 // Disables support for Core Animation plugins. This is triggered when | 986 // Disables support for Core Animation plugins. This is triggered when |
| 990 // accelerated compositing is disabled. See http://crbug.com/122430 . | 987 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 991 const char kDisableCoreAnimationPlugins[] = | 988 const char kDisableCoreAnimationPlugins[] = |
| 992 "disable-core-animation-plugins"; | 989 "disable-core-animation-plugins"; |
| 993 #endif | 990 #endif |
| 994 | 991 |
| 995 // Don't dump stuff here, follow the same order as the header. | 992 // Don't dump stuff here, follow the same order as the header. |
| 996 | 993 |
| 997 } // namespace switches | 994 } // namespace switches |
| OLD | NEW |