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