| 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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 | 848 |
| 849 // Use TEXTURE_EXTERNAL_OES target with CHROMIUM_image extension. | 849 // Use TEXTURE_EXTERNAL_OES target with CHROMIUM_image extension. |
| 850 const char kUseImageExternal[] = "use-image-external"; | 850 const char kUseImageExternal[] = "use-image-external"; |
| 851 | 851 |
| 852 // Set when Chromium should use a mobile user agent. | 852 // Set when Chromium should use a mobile user agent. |
| 853 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; | 853 const char kUseMobileUserAgent[] = "use-mobile-user-agent"; |
| 854 | 854 |
| 855 // Use the new surfaces system to handle compositor delegation. | 855 // Use the new surfaces system to handle compositor delegation. |
| 856 const char kUseSurfaces[] = "use-surfaces"; | 856 const char kUseSurfaces[] = "use-surfaces"; |
| 857 | 857 |
| 858 // Disable the use of the new surfaces system to handle compositor delegation. |
| 859 const char kDisableSurfaces[] = "disable-surfaces"; |
| 860 |
| 858 // On POSIX only: the contents of this flag are prepended to the utility | 861 // On POSIX only: the contents of this flag are prepended to the utility |
| 859 // process command line. Useful values might be "valgrind" or "xterm -e gdb | 862 // process command line. Useful values might be "valgrind" or "xterm -e gdb |
| 860 // --args". | 863 // --args". |
| 861 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 864 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
| 862 | 865 |
| 863 // Causes the process to run as a utility subprocess. | 866 // Causes the process to run as a utility subprocess. |
| 864 const char kUtilityProcess[] = "utility"; | 867 const char kUtilityProcess[] = "utility"; |
| 865 | 868 |
| 866 // The utility process is sandboxed, with access to one directory. This flag | 869 // The utility process is sandboxed, with access to one directory. This flag |
| 867 // specifies the directory that can be accessed. | 870 // specifies the directory that can be accessed. |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 #endif | 997 #endif |
| 995 | 998 |
| 996 #if defined(ENABLE_PLUGINS) | 999 #if defined(ENABLE_PLUGINS) |
| 997 // Enables the plugin power saver feature. | 1000 // Enables the plugin power saver feature. |
| 998 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 1001 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 999 #endif | 1002 #endif |
| 1000 | 1003 |
| 1001 // Don't dump stuff here, follow the same order as the header. | 1004 // Don't dump stuff here, follow the same order as the header. |
| 1002 | 1005 |
| 1003 } // namespace switches | 1006 } // namespace switches |
| OLD | NEW |