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