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

Side by Side Diff: cc/base/switches.cc

Issue 73923003: Shared Raster Worker Threads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WIP - Mapped Task Pool for Worker Threads Created 7 years 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
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 "cc/base/switches.h" 5 #include "cc/base/switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/strings/string_number_conversions.h"
8 9
9 namespace cc { 10 namespace cc {
10 namespace switches { 11 namespace switches {
11 12
12 // On platforms where checkerboards are used, prefer background colors instead 13 // On platforms where checkerboards are used, prefer background colors instead
13 // of checkerboards. 14 // of checkerboards.
14 const char kBackgroundColorInsteadOfCheckerboard[] = 15 const char kBackgroundColorInsteadOfCheckerboard[] =
15 "background-color-instead-of-checkerboard"; 16 "background-color-instead-of-checkerboard";
16 17
17 // Disables LCD text. 18 // Disables LCD text.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 192 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
192 193
193 if (command_line.HasSwitch(cc::switches::kDisableMapImage)) 194 if (command_line.HasSwitch(cc::switches::kDisableMapImage))
194 return false; 195 return false;
195 else if (command_line.HasSwitch(cc::switches::kEnableMapImage)) 196 else if (command_line.HasSwitch(cc::switches::kEnableMapImage))
196 return true; 197 return true;
197 198
198 return false; 199 return false;
199 } 200 }
200 201
202 size_t GetNumRasterThreads() {
203 const int kMinRasterThreads = 1;
204 const int kMaxRasterThreads = 64;
205 const int kDefaultNumRasterThreads = 1;
206
207 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
208 if (command_line.HasSwitch(cc::switches::kNumRasterThreads)) {
209 std::string string_value =
210 command_line.GetSwitchValueASCII(cc::switches::kNumRasterThreads);
211 int num_threads;
212 base::StringToInt(string_value, &num_threads);
213 return std::max(kMinRasterThreads,
214 std::min(num_threads, kMaxRasterThreads));
215 } else {
216 return kDefaultNumRasterThreads;
217 }
218 }
219
201 } // namespace switches 220 } // namespace switches
202 } // namespace cc 221 } // namespace cc
OLDNEW
« no previous file with comments | « cc/base/switches.h ('k') | cc/resources/worker_pool.h » ('j') | cc/resources/worker_pool.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698