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

Unified Diff: remoting/host/plugin/host_script_object.cc

Issue 10808094: Always use chromium threads for IO in remoting host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/host/plugin/host_script_object.cc
diff --git a/remoting/host/plugin/host_script_object.cc b/remoting/host/plugin/host_script_object.cc
index ac8f9af8ae1cbd658f96649972e78224e23d0bc7..71e41faaff57cb061a44122dd489f02d6fefcc62 100644
--- a/remoting/host/plugin/host_script_object.cc
+++ b/remoting/host/plugin/host_script_object.cc
@@ -549,8 +549,8 @@ void HostNPScriptObject::FinishConnectNetworkThread(
// Create XMPP connection.
scoped_ptr<SignalStrategy> signal_strategy(
- new XmppSignalStrategy(host_context_->jingle_thread(), uid,
- auth_token, auth_service));
+ new XmppSignalStrategy(host_context_->url_request_context_getter(),
+ uid, auth_token, auth_service));
// Request registration of the host for support.
scoped_ptr<RegisterSupportHostRequest> register_request(

Powered by Google App Engine
This is Rietveld 408576698