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