| Index: remoting/client/plugin/chromoting_instance.cc
|
| diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc
|
| index f4be000bf877f074dc873d4cc2502a3fb55167ef..a28a8e96accea75493e4138af0549e0972d8f536 100644
|
| --- a/remoting/client/plugin/chromoting_instance.cc
|
| +++ b/remoting/client/plugin/chromoting_instance.cc
|
| @@ -232,8 +232,9 @@ bool ChromotingInstance::Init(uint32_t argc,
|
| // PepperView with a ref-counted proxy object.
|
| scoped_refptr<FrameConsumerProxy> consumer_proxy =
|
| new FrameConsumerProxy(plugin_task_runner_);
|
| - rectangle_decoder_ = new RectangleUpdateDecoder(
|
| - context_.decode_task_runner(), consumer_proxy);
|
| + rectangle_decoder_ = new RectangleUpdateDecoder(context_.main_task_runner(),
|
| + context_.decode_task_runner(),
|
| + consumer_proxy);
|
| view_.reset(new PepperView(this, &context_, rectangle_decoder_.get()));
|
| consumer_proxy->Attach(view_->AsWeakPtr());
|
|
|
|
|