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

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

Issue 927463004: cc: Default threaded GPU rasterization to ON. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 9606eb56756506d28b3b9df1bf77fabe5f3cd933..c75571b929c7a6a6039a19bef9bd21862719584b 100644
--- a/content/browser/gpu/compositor_util.cc
+++ b/content/browser/gpu/compositor_util.cc
@@ -301,10 +301,8 @@ bool IsThreadedGpuRasterizationEnabled() {
if (command_line.HasSwitch(switches::kDisableThreadedGpuRasterization))
return false;
- if (command_line.HasSwitch(switches::kEnableThreadedGpuRasterization))
- return true;
- return false;
+ return true;
}
bool UseSurfacesEnabled() {
« 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