| 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 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 // Prioritizes the UI's command stream in the GPU process | 873 // Prioritizes the UI's command stream in the GPU process |
| 874 const char kUIPrioritizeInGpuProcess[] = "ui-prioritize-in-gpu-process"; | 874 const char kUIPrioritizeInGpuProcess[] = "ui-prioritize-in-gpu-process"; |
| 875 | 875 |
| 876 // Bypass the media stream infobar by selecting the default device for media | 876 // Bypass the media stream infobar by selecting the default device for media |
| 877 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. | 877 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. |
| 878 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; | 878 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; |
| 879 | 879 |
| 880 // Texture target for CHROMIUM_image backed content textures. | 880 // Texture target for CHROMIUM_image backed content textures. |
| 881 const char kContentImageTextureTarget[] = "content-image-texture-target"; | 881 const char kContentImageTextureTarget[] = "content-image-texture-target"; |
| 882 | 882 |
| 883 // Texture target for CHROMIUM_image backed content textures for browser process |
| 884 const char kBrowserContentImageTextureTarget[] = |
| 885 "browser-content-image-texture-target"; |
| 886 |
| 883 // Texture target for CHROMIUM_image backed video frame textures. | 887 // Texture target for CHROMIUM_image backed video frame textures. |
| 884 const char kVideoImageTextureTarget[] = "video-image-texture-target"; | 888 const char kVideoImageTextureTarget[] = "video-image-texture-target"; |
| 885 | 889 |
| 886 // Set when Chromium should use a mobile user agent. | 890 // Set when Chromium should use a mobile user agent. |
| 887 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 891 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
| 888 | 892 |
| 889 // The contents of this flag are prepended to the utility process command line. | 893 // The contents of this flag are prepended to the utility process command line. |
| 890 // Useful values might be "valgrind" or "xterm -e gdb --args". | 894 // Useful values might be "valgrind" or "xterm -e gdb --args". |
| 891 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 895 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
| 892 | 896 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1088 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1089 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1086 | 1090 |
| 1087 // Specifies the testcase used by the IPC fuzzer. | 1091 // Specifies the testcase used by the IPC fuzzer. |
| 1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1092 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1089 #endif | 1093 #endif |
| 1090 | 1094 |
| 1091 // Don't dump stuff here, follow the same order as the header. | 1095 // Don't dump stuff here, follow the same order as the header. |
| 1092 | 1096 |
| 1093 } // namespace switches | 1097 } // namespace switches |
| OLD | NEW |