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

Unified Diff: content/browser/gpu/compositor_util.cc

Issue 1733703002: content: Allow multiple raster threads on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/compositor_util.cc
diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
index 88b2e7ae9c58162e02dd79fbbc2f4ab7cb918d81..cb8e8fd8be005ee9cfff3da22654a0f07da5c028 100644
--- a/content/browser/gpu/compositor_util.cc
+++ b/content/browser/gpu/compositor_util.cc
@@ -182,13 +182,6 @@ int NumberOfRendererRasterThreads() {
int num_raster_threads = num_processors / 2;
-#if defined(OS_ANDROID)
- // Limit the number of raster threads to 1 on Android.
- // TODO(reveman): Remove this when we have a better mechanims to prevent
- // pre-paint raster work from slowing down non-raster work. crbug.com/504515
- num_raster_threads = 1;
aelias_OOO_until_Jul13 2016/02/26 03:12:02 vmpstr@ and ericrk@ mentioned today they'd also pr
-#endif
-
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698