| 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 e663ff03f3a88db524cdec5f7024a68419ea654c..1eefc039383476fc7d24d6efbaf48ae40c40f773 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1073,10 +1073,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);
|
| }
|
|
|
| if (IsGpuRasterizationEnabled())
|
|
|