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

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

Issue 141163019: Re-land: cc: Remove WorkerPool class and instead use TaskGraphRunner directly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mode of task_graph_runner.h 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
720 // Enables or disables history navigation in response to horizontal overscroll. 723 // Enables or disables history navigation in response to horizontal overscroll.
721 // Set the value to '1' to enable the feature, and set to '0' to disable. 724 // Set the value to '1' to enable the feature, and set to '0' to disable.
722 // Defaults to enabled. 725 // Defaults to enabled.
723 const char kOverscrollHistoryNavigation[] = 726 const char kOverscrollHistoryNavigation[] =
724 "overscroll-history-navigation"; 727 "overscroll-history-navigation";
725 728
726 // Specifies a command that should be used to launch the plugin process. Useful 729 // Specifies a command that should be used to launch the plugin process. Useful
727 // for running the plugin process through purify or quantify. Ex: 730 // for running the plugin process through purify or quantify. Ex:
728 // --plugin-launcher="path\to\purify /Run=yes" 731 // --plugin-launcher="path\to\purify /Run=yes"
729 const char kPluginLauncher[] = "plugin-launcher"; 732 const char kPluginLauncher[] = "plugin-launcher";
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #endif 1055 #endif
1053 1056
1054 #if defined(OS_POSIX) 1057 #if defined(OS_POSIX)
1055 // Causes the child processes to cleanly exit via calling exit(). 1058 // Causes the child processes to cleanly exit via calling exit().
1056 const char kChildCleanExit[] = "child-clean-exit"; 1059 const char kChildCleanExit[] = "child-clean-exit";
1057 #endif 1060 #endif
1058 1061
1059 // Don't dump stuff here, follow the same order as the header. 1062 // Don't dump stuff here, follow the same order as the header.
1060 1063
1061 } // namespace switches 1064 } // 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