| Index: cc/thread_proxy.cc
|
| diff --git a/cc/thread_proxy.cc b/cc/thread_proxy.cc
|
| index 022f1ebc97dd96ff8a5bcf8f4aeb255d4b904d0e..e6ff1e3432c85d27d25710d209c40aedd52712cf 100644
|
| --- a/cc/thread_proxy.cc
|
| +++ b/cc/thread_proxy.cc
|
| @@ -918,7 +918,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);
|
|
|