diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-24 04:15:45 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-24 04:15:45 +0000 |
commit | 0a4efa778da2ac9c3ecf0d399b95f68f42c5bf90 (patch) | |
tree | 6cc617d1608ada9bc3e38a16ed953fe2250c4092 /remoting/client | |
parent | 6ff1eb184967aa21173f743b750c80ce6435e0f2 (diff) | |
download | chromium_src-0a4efa778da2ac9c3ecf0d399b95f68f42c5bf90.zip chromium_src-0a4efa778da2ac9c3ecf0d399b95f68f42c5bf90.tar.gz chromium_src-0a4efa778da2ac9c3ecf0d399b95f68f42c5bf90.tar.bz2 |
Don't depend on MessageLoopProxy in remoting protocol code.
Review URL: https://chromiumcodereview.appspot.com/10332304
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138731 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client')
-rw-r--r-- | remoting/client/plugin/chromoting_instance.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc index c4d143f..6dc05c7 100644 --- a/remoting/client/plugin/chromoting_instance.cc +++ b/remoting/client/plugin/chromoting_instance.cc @@ -401,8 +401,7 @@ void ChromotingInstance::Connect(const ClientConfig& config) { jingle_glue::JingleThreadWrapper::EnsureForCurrentThread(); - host_connection_.reset(new protocol::ConnectionToHost( - context_.network_message_loop(), true)); + host_connection_.reset(new protocol::ConnectionToHost(true)); client_.reset(new ChromotingClient(config, &context_, host_connection_.get(), view_.get(), rectangle_decoder_.get(), base::Closure())); |