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 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 | 853 |
854 // Enable native GPU memory buffer support when available. | 854 // Enable native GPU memory buffer support when available. |
855 const char kEnableNativeGpuMemoryBuffers[] = "enable-native-gpu-memory-buffers"; | 855 const char kEnableNativeGpuMemoryBuffers[] = "enable-native-gpu-memory-buffers"; |
856 | 856 |
857 // Texture target for CHROMIUM_image backed content textures. | 857 // Texture target for CHROMIUM_image backed content textures. |
858 const char kContentImageTextureTarget[] = "content-image-texture-target"; | 858 const char kContentImageTextureTarget[] = "content-image-texture-target"; |
859 | 859 |
860 // Texture target for CHROMIUM_image backed video frame textures. | 860 // Texture target for CHROMIUM_image backed video frame textures. |
861 const char kVideoImageTextureTarget[] = "video-image-texture-target"; | 861 const char kVideoImageTextureTarget[] = "video-image-texture-target"; |
862 | 862 |
| 863 // Used in conjunction with kUseRemoteCompositing to enable the updated remote |
| 864 // compositing path using cc::LayerTreeHostRemote. |
| 865 const char kUseLayerTreeHostRemote[] = "use-layer-tree-host-remote"; |
| 866 |
863 // Set when Chromium should use a mobile user agent. | 867 // Set when Chromium should use a mobile user agent. |
864 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 868 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
865 | 869 |
866 // Use remote compositor for the renderer. | 870 // Use remote compositor for the renderer. |
867 const char kUseRemoteCompositing[] = "use-remote-compositing"; | 871 const char kUseRemoteCompositing[] = "use-remote-compositing"; |
868 | 872 |
869 // The contents of this flag are prepended to the utility process command line. | 873 // The contents of this flag are prepended to the utility process command line. |
870 // Useful values might be "valgrind" or "xterm -e gdb --args". | 874 // Useful values might be "valgrind" or "xterm -e gdb --args". |
871 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 875 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
872 | 876 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1064 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1061 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1065 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1062 | 1066 |
1063 // Specifies the testcase used by the IPC fuzzer. | 1067 // Specifies the testcase used by the IPC fuzzer. |
1064 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1068 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1065 #endif | 1069 #endif |
1066 | 1070 |
1067 // Don't dump stuff here, follow the same order as the header. | 1071 // Don't dump stuff here, follow the same order as the header. |
1068 | 1072 |
1069 } // namespace switches | 1073 } // namespace switches |
OLD | NEW |