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