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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 | 850 |
851 // Texture target for CHROMIUM_image backed content textures. | 851 // Texture target for CHROMIUM_image backed content textures. |
852 const char kContentImageTextureTarget[] = "content-image-texture-target"; | 852 const char kContentImageTextureTarget[] = "content-image-texture-target"; |
853 | 853 |
854 // Texture target for CHROMIUM_image backed video frame textures. | 854 // Texture target for CHROMIUM_image backed video frame textures. |
855 const char kVideoImageTextureTarget[] = "video-image-texture-target"; | 855 const char kVideoImageTextureTarget[] = "video-image-texture-target"; |
856 | 856 |
857 // Set when Chromium should use a mobile user agent. | 857 // Set when Chromium should use a mobile user agent. |
858 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 858 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
859 | 859 |
860 // Use normal priority for tile task worker threads. Otherwise they may | |
861 // be run at background priority on some platforms. | |
862 const char kUseNormalPriorityForTileTaskWorkerThreads[] = | |
863 "use-normal-priority-for-tile-task-worker-threads"; | |
864 | |
865 // Use remote compositor for the renderer. | 860 // Use remote compositor for the renderer. |
866 const char kUseRemoteCompositing[] = "use-remote-compositing"; | 861 const char kUseRemoteCompositing[] = "use-remote-compositing"; |
867 | 862 |
868 // The contents of this flag are prepended to the utility process command line. | 863 // The contents of this flag are prepended to the utility process command line. |
869 // Useful values might be "valgrind" or "xterm -e gdb --args". | 864 // Useful values might be "valgrind" or "xterm -e gdb --args". |
870 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 865 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
871 | 866 |
872 // Causes the process to run as a utility subprocess. | 867 // Causes the process to run as a utility subprocess. |
873 const char kUtilityProcess[] = "utility"; | 868 const char kUtilityProcess[] = "utility"; |
874 | 869 |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1049 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1055 | 1050 |
1056 // Enables the exporting of the tracing events to ETW. This is only supported on | 1051 // Enables the exporting of the tracing events to ETW. This is only supported on |
1057 // Windows Vista and later. | 1052 // Windows Vista and later. |
1058 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1053 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1059 #endif | 1054 #endif |
1060 | 1055 |
1061 // Don't dump stuff here, follow the same order as the header. | 1056 // Don't dump stuff here, follow the same order as the header. |
1062 | 1057 |
1063 } // namespace switches | 1058 } // namespace switches |
OLD | NEW |