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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 | 813 |
814 // Texture target for CHROMIUM_image backed content textures. | 814 // Texture target for CHROMIUM_image backed content textures. |
815 const char kContentImageTextureTarget[] = "content-image-texture-target"; | 815 const char kContentImageTextureTarget[] = "content-image-texture-target"; |
816 | 816 |
817 // Texture target for CHROMIUM_image backed video frame textures. | 817 // Texture target for CHROMIUM_image backed video frame textures. |
818 const char kVideoImageTextureTarget[] = "video-image-texture-target"; | 818 const char kVideoImageTextureTarget[] = "video-image-texture-target"; |
819 | 819 |
820 // Set when Chromium should use a mobile user agent. | 820 // Set when Chromium should use a mobile user agent. |
821 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 821 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
822 | 822 |
823 // Use normal priority for tile task worker threads. Otherwise they may | |
824 // be run at background priority on some platforms. | |
825 const char kUseNormalPriorityForTileTaskWorkerThreads[] = | |
826 "use-normal-priority-for-tile-task-worker-threads"; | |
827 | |
828 // Use remote compositor for the renderer. | 823 // Use remote compositor for the renderer. |
829 const char kUseRemoteCompositing[] = "use-remote-compositing"; | 824 const char kUseRemoteCompositing[] = "use-remote-compositing"; |
830 | 825 |
831 // The contents of this flag are prepended to the utility process command line. | 826 // The contents of this flag are prepended to the utility process command line. |
832 // Useful values might be "valgrind" or "xterm -e gdb --args". | 827 // Useful values might be "valgrind" or "xterm -e gdb --args". |
833 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 828 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
834 | 829 |
835 // Causes the process to run as a utility subprocess. | 830 // Causes the process to run as a utility subprocess. |
836 const char kUtilityProcess[] = "utility"; | 831 const char kUtilityProcess[] = "utility"; |
837 | 832 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 987 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
993 | 988 |
994 // Enables the exporting of the tracing events to ETW. This is only supported on | 989 // Enables the exporting of the tracing events to ETW. This is only supported on |
995 // Windows Vista and later. | 990 // Windows Vista and later. |
996 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 991 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
997 #endif | 992 #endif |
998 | 993 |
999 // Don't dump stuff here, follow the same order as the header. | 994 // Don't dump stuff here, follow the same order as the header. |
1000 | 995 |
1001 } // namespace switches | 996 } // namespace switches |
OLD | NEW |