| 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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 | 884 |
| 885 // Texture target for CHROMIUM_image backed content textures. | 885 // Texture target for CHROMIUM_image backed content textures. |
| 886 const char kContentImageTextureTarget[] = "content-image-texture-target"; | 886 const char kContentImageTextureTarget[] = "content-image-texture-target"; |
| 887 | 887 |
| 888 // Texture target for CHROMIUM_image backed video frame textures. | 888 // Texture target for CHROMIUM_image backed video frame textures. |
| 889 const char kVideoImageTextureTarget[] = "video-image-texture-target"; | 889 const char kVideoImageTextureTarget[] = "video-image-texture-target"; |
| 890 | 890 |
| 891 // Set when Chromium should use a mobile user agent. | 891 // Set when Chromium should use a mobile user agent. |
| 892 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 892 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
| 893 | 893 |
| 894 // Use remote compositor for the renderer. | |
| 895 const char kUseRemoteCompositing[] = "use-remote-compositing"; | |
| 896 | |
| 897 // The contents of this flag are prepended to the utility process command line. | 894 // The contents of this flag are prepended to the utility process command line. |
| 898 // Useful values might be "valgrind" or "xterm -e gdb --args". | 895 // Useful values might be "valgrind" or "xterm -e gdb --args". |
| 899 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 896 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
| 900 | 897 |
| 901 // Causes the process to run as a utility subprocess. | 898 // Causes the process to run as a utility subprocess. |
| 902 const char kUtilityProcess[] = "utility"; | 899 const char kUtilityProcess[] = "utility"; |
| 903 | 900 |
| 904 // The utility process is sandboxed, with access to one directory. This flag | 901 // The utility process is sandboxed, with access to one directory. This flag |
| 905 // specifies the directory that can be accessed. | 902 // specifies the directory that can be accessed. |
| 906 const char kUtilityProcessAllowedDir[] = "utility-allowed-dir"; | 903 const char kUtilityProcessAllowedDir[] = "utility-allowed-dir"; |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1092 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1096 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1097 | 1094 |
| 1098 // Specifies the testcase used by the IPC fuzzer. | 1095 // Specifies the testcase used by the IPC fuzzer. |
| 1099 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1100 #endif | 1097 #endif |
| 1101 | 1098 |
| 1102 // Don't dump stuff here, follow the same order as the header. | 1099 // Don't dump stuff here, follow the same order as the header. |
| 1103 | 1100 |
| 1104 } // namespace switches | 1101 } // namespace switches |
| OLD | NEW |