diff options
Diffstat (limited to 'cc/thread_proxy.cc')
-rw-r--r-- | cc/thread_proxy.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cc/thread_proxy.cc b/cc/thread_proxy.cc index 1cdcb55..8708c26 100644 --- a/cc/thread_proxy.cc +++ b/cc/thread_proxy.cc @@ -936,7 +936,10 @@ void ThreadProxy::initializeImplOnImplThread(CompletionEvent* completion, InputH frameRateController.reset(new FrameRateController(DelayBasedTimeSource::create(displayRefreshInterval, Proxy::implThread()))); else frameRateController.reset(new FrameRateController(Proxy::implThread())); - m_schedulerOnImplThread = Scheduler::create(this, frameRateController.Pass()); + SchedulerSettings schedulerSettings; + schedulerSettings.implSidePainting = m_layerTreeHost->settings().implSidePainting; + m_schedulerOnImplThread = Scheduler::create(this, frameRateController.Pass(), + schedulerSettings); m_schedulerOnImplThread->setVisible(m_layerTreeHostImpl->visible()); m_inputHandlerOnImplThread = scoped_ptr<InputHandler>(handler); |