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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 934 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
935 #endif | 935 #endif |
936 | 936 |
937 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 937 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
938 const char kEnableAggressiveDOMStorageFlushing[] = | 938 const char kEnableAggressiveDOMStorageFlushing[] = |
939 "enable-aggressive-domstorage-flushing"; | 939 "enable-aggressive-domstorage-flushing"; |
940 | 940 |
941 // Disable web audio API. | 941 // Disable web audio API. |
942 const char kDisableWebAudio[] = "disable-webaudio"; | 942 const char kDisableWebAudio[] = "disable-webaudio"; |
943 | 943 |
| 944 // Enable audio for desktop share. |
| 945 const char kEnableAudioSupportForDesktopShare[] = |
| 946 "enable-audio-support-for-desktop-share"; |
| 947 |
944 #if defined(OS_CHROMEOS) | 948 #if defined(OS_CHROMEOS) |
945 // Disables panel fitting (used for mirror mode). | 949 // Disables panel fitting (used for mirror mode). |
946 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 950 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
947 | 951 |
948 // Disables VA-API accelerated video encode. | 952 // Disables VA-API accelerated video encode. |
949 const char kDisableVaapiAcceleratedVideoEncode[] = | 953 const char kDisableVaapiAcceleratedVideoEncode[] = |
950 "disable-vaapi-accelerated-video-encode"; | 954 "disable-vaapi-accelerated-video-encode"; |
951 #endif | 955 #endif |
952 | 956 |
953 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 957 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 999 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
996 | 1000 |
997 // Enables the exporting of the tracing events to ETW. This is only supported on | 1001 // Enables the exporting of the tracing events to ETW. This is only supported on |
998 // Windows Vista and later. | 1002 // Windows Vista and later. |
999 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1003 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1000 #endif | 1004 #endif |
1001 | 1005 |
1002 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
1003 | 1007 |
1004 } // namespace switches | 1008 } // namespace switches |
OLD | NEW |