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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 // Disables RGBA_4444 textures. | 254 // Disables RGBA_4444 textures. |
255 const char kDisableRGBA4444Textures[] = "disable-rgba-4444-textures"; | 255 const char kDisableRGBA4444Textures[] = "disable-rgba-4444-textures"; |
256 | 256 |
257 // Taints all <canvas> elements, regardless of origin. | 257 // Taints all <canvas> elements, regardless of origin. |
258 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; | 258 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; |
259 | 259 |
260 // Disables remote web font support. SVG font should always work whether this | 260 // Disables remote web font support. SVG font should always work whether this |
261 // option is specified or not. | 261 // option is specified or not. |
262 const char kDisableRemoteFonts[] = "disable-remote-fonts"; | 262 const char kDisableRemoteFonts[] = "disable-remote-fonts"; |
263 | 263 |
| 264 // Disables the RemotePlayback API. |
| 265 const char kDisableRemotePlaybackAPI[] = "disable-remote-playback-api"; |
| 266 |
264 // Turns off the accessibility in the renderer. | 267 // Turns off the accessibility in the renderer. |
265 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; | 268 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; |
266 | 269 |
267 // Prevent renderer process backgrounding when set. | 270 // Prevent renderer process backgrounding when set. |
268 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; | 271 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; |
269 | 272 |
270 // Whether the resize lock is disabled. Default is false. This is generally only | 273 // Whether the resize lock is disabled. Default is false. This is generally only |
271 // useful for tests that want to force disabling. | 274 // useful for tests that want to force disabling. |
272 const char kDisableResizeLock[] = "disable-resize-lock"; | 275 const char kDisableResizeLock[] = "disable-resize-lock"; |
273 | 276 |
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1071 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1069 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1072 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1070 | 1073 |
1071 // Specifies the testcase used by the IPC fuzzer. | 1074 // Specifies the testcase used by the IPC fuzzer. |
1072 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1075 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1073 #endif | 1076 #endif |
1074 | 1077 |
1075 // Don't dump stuff here, follow the same order as the header. | 1078 // Don't dump stuff here, follow the same order as the header. |
1076 | 1079 |
1077 } // namespace switches | 1080 } // namespace switches |
OLD | NEW |