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

Unified Diff: remoting/client/plugin/chromoting_instance.cc

Issue 10867039: Moved video stub implementation to RectangleUpdateDecoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 4 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: 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());

Powered by Google App Engine
This is Rietveld 408576698