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 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 // Mutes audio sent to the audio device so it is not audible during | 710 // Mutes audio sent to the audio device so it is not audible during |
711 // automated testing. | 711 // automated testing. |
712 const char kMuteAudio[] = "mute-audio"; | 712 const char kMuteAudio[] = "mute-audio"; |
713 | 713 |
714 // Don't send HTTP-Referer headers. | 714 // Don't send HTTP-Referer headers. |
715 const char kNoReferrers[] = "no-referrers"; | 715 const char kNoReferrers[] = "no-referrers"; |
716 | 716 |
717 // Disables the sandbox for all process types that are normally sandboxed. | 717 // Disables the sandbox for all process types that are normally sandboxed. |
718 const char kNoSandbox[] = "no-sandbox"; | 718 const char kNoSandbox[] = "no-sandbox"; |
719 | 719 |
720 // Number of worker threads used to rasterize content. | |
721 const char kNumRasterThreads[] = "num-raster-threads"; | |
722 | |
723 // Enables or disables history navigation in response to horizontal overscroll. | 720 // Enables or disables history navigation in response to horizontal overscroll. |
724 // Set the value to '1' to enable the feature, and set to '0' to disable. | 721 // Set the value to '1' to enable the feature, and set to '0' to disable. |
725 // Defaults to enabled. | 722 // Defaults to enabled. |
726 const char kOverscrollHistoryNavigation[] = | 723 const char kOverscrollHistoryNavigation[] = |
727 "overscroll-history-navigation"; | 724 "overscroll-history-navigation"; |
728 | 725 |
729 // Specifies a command that should be used to launch the plugin process. Useful | 726 // Specifies a command that should be used to launch the plugin process. Useful |
730 // for running the plugin process through purify or quantify. Ex: | 727 // for running the plugin process through purify or quantify. Ex: |
731 // --plugin-launcher="path\to\purify /Run=yes" | 728 // --plugin-launcher="path\to\purify /Run=yes" |
732 const char kPluginLauncher[] = "plugin-launcher"; | 729 const char kPluginLauncher[] = "plugin-launcher"; |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1055 #endif | 1052 #endif |
1056 | 1053 |
1057 #if defined(OS_POSIX) | 1054 #if defined(OS_POSIX) |
1058 // Causes the child processes to cleanly exit via calling exit(). | 1055 // Causes the child processes to cleanly exit via calling exit(). |
1059 const char kChildCleanExit[] = "child-clean-exit"; | 1056 const char kChildCleanExit[] = "child-clean-exit"; |
1060 #endif | 1057 #endif |
1061 | 1058 |
1062 // Don't dump stuff here, follow the same order as the header. | 1059 // Don't dump stuff here, follow the same order as the header. |
1063 | 1060 |
1064 } // namespace switches | 1061 } // namespace switches |
OLD | NEW |