Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Side by Side Diff: content/public/common/content_switches.cc

Issue 143003012: Revert of cc: Remove WorkerPool class and instead use TaskGraphRunner directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698