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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 | 878 |
879 | 879 |
880 | 880 |
881 // Prioritizes the UI's command stream in the GPU process | 881 // Prioritizes the UI's command stream in the GPU process |
882 extern const char kUIPrioritizeInGpuProcess[] = | 882 extern const char kUIPrioritizeInGpuProcess[] = |
883 "ui-prioritize-in-gpu-process"; | 883 "ui-prioritize-in-gpu-process"; |
884 | 884 |
885 // Overrides the preferred discardable memory implementation. | 885 // Overrides the preferred discardable memory implementation. |
886 const char kUseDiscardableMemory[] = "use-discardable-memory"; | 886 const char kUseDiscardableMemory[] = "use-discardable-memory"; |
887 | 887 |
| 888 // Use fake device for MediaStream to replace actual camera and microphone. |
| 889 const char kUseFakeDeviceForMediaStream[] = "use-fake-device-for-media-stream"; |
| 890 |
888 // Bypass the media stream infobar by selecting the default device for media | 891 // Bypass the media stream infobar by selecting the default device for media |
889 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. | 892 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. |
890 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; | 893 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; |
891 | 894 |
892 // Set when Chromium should use a mobile user agent. | 895 // Set when Chromium should use a mobile user agent. |
893 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 896 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
894 | 897 |
895 // On POSIX only: the contents of this flag are prepended to the utility | 898 // On POSIX only: the contents of this flag are prepended to the utility |
896 // process command line. Useful values might be "valgrind" or "xterm -e gdb | 899 // process command line. Useful values might be "valgrind" or "xterm -e gdb |
897 // --args". | 900 // --args". |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 | 1005 |
1003 // Disables support for Core Animation plugins. This is triggered when | 1006 // Disables support for Core Animation plugins. This is triggered when |
1004 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1007 // accelerated compositing is disabled. See http://crbug.com/122430 . |
1005 const char kDisableCoreAnimationPlugins[] = | 1008 const char kDisableCoreAnimationPlugins[] = |
1006 "disable-core-animation-plugins"; | 1009 "disable-core-animation-plugins"; |
1007 #endif | 1010 #endif |
1008 | 1011 |
1009 // Don't dump stuff here, follow the same order as the header. | 1012 // Don't dump stuff here, follow the same order as the header. |
1010 | 1013 |
1011 } // namespace switches | 1014 } // namespace switches |
OLD | NEW |