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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 830273003: Remove impl-side-painting from about:flags (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: impl-flags: removekEnableImplSidePainting Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 727c7c4da9e710733b0ecf487094583565b6bea3..17eacb8142163b119ea290862cbf6025d89d651e 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -1071,10 +1071,11 @@ static void AppendCompositorCommandLineFlags(base::CommandLine* command_line) {
command_line->AppendSwitch(switches::kEnableDelegatedRenderer);
if (IsImplSidePaintingEnabled()) {
- command_line->AppendSwitch(switches::kEnableImplSidePainting);
command_line->AppendSwitchASCII(
switches::kNumRasterThreads,
base::IntToString(NumberOfRendererRasterThreads()));
+ } else {
+ command_line->AppendSwitch(switches::kDisableImplSidePainting);
no sievers 2015/01/09 20:22:32 So this was broken before in that it didn't propag
danakj 2015/01/09 20:23:14 No the renderer was looking for enable before. Now
danakj 2015/01/09 21:32:52 Tho it appears that at least in the RenderThreadIm
}
if (IsGpuRasterizationEnabled())

Powered by Google App Engine
This is Rietveld 408576698