| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 // Disable FileSystem API. | 131 // Disable FileSystem API. |
| 132 const char kDisableFileSystem[] = "disable-file-system"; | 132 const char kDisableFileSystem[] = "disable-file-system"; |
| 133 | 133 |
| 134 // Disable 3D inside of flapper. | 134 // Disable 3D inside of flapper. |
| 135 const char kDisableFlash3d[] = "disable-flash-3d"; | 135 const char kDisableFlash3d[] = "disable-flash-3d"; |
| 136 | 136 |
| 137 // Disable Stage3D inside of flapper. | 137 // Disable Stage3D inside of flapper. |
| 138 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; | 138 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; |
| 139 | 139 |
| 140 // Disable user gesture requirement for media playback. |
| 141 const char kDisableGestureRequirementForMediaPlayback[] = |
| 142 "disable-gesture-requirement-for-media-playback"; |
| 143 |
| 140 // Disable user gesture requirement for presentation. | 144 // Disable user gesture requirement for presentation. |
| 141 const char kDisableGestureRequirementForPresentation[] = | 145 const char kDisableGestureRequirementForPresentation[] = |
| 142 "disable-gesture-requirement-for-presentation"; | 146 "disable-gesture-requirement-for-presentation"; |
| 143 | 147 |
| 144 // Disables GPU hardware acceleration. If software renderer is not in place, | 148 // Disables GPU hardware acceleration. If software renderer is not in place, |
| 145 // then the GPU process won't launch. | 149 // then the GPU process won't launch. |
| 146 const char kDisableGpu[] = "disable-gpu"; | 150 const char kDisableGpu[] = "disable-gpu"; |
| 147 | 151 |
| 148 // Prevent the compositor from using its GPU implementation. | 152 // Prevent the compositor from using its GPU implementation. |
| 149 const char kDisableGpuCompositing[] = "disable-gpu-compositing"; | 153 const char kDisableGpuCompositing[] = "disable-gpu-compositing"; |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1077 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1081 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1078 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1082 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1079 | 1083 |
| 1080 // Specifies the testcase used by the IPC fuzzer. | 1084 // Specifies the testcase used by the IPC fuzzer. |
| 1081 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1085 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1082 #endif | 1086 #endif |
| 1083 | 1087 |
| 1084 // Don't dump stuff here, follow the same order as the header. | 1088 // Don't dump stuff here, follow the same order as the header. |
| 1085 | 1089 |
| 1086 } // namespace switches | 1090 } // namespace switches |
| OLD | NEW |