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

Unified Diff: remoting/jingle_glue/jingle_client.h

Issue 6623048: Replace libjingle's HttpPortAllocatorSession with Pepper's http client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: thread switching Created 9 years, 9 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/jingle_glue/jingle_client.h
diff --git a/remoting/jingle_glue/jingle_client.h b/remoting/jingle_glue/jingle_client.h
index 05574659cfb337ea7b5ce4a26e79390795658dd5..d115d08d80b49f6a243b5060dbf7f05f89d673a2 100644
--- a/remoting/jingle_glue/jingle_client.h
+++ b/remoting/jingle_glue/jingle_client.h
@@ -40,6 +40,7 @@ namespace remoting {
class IqRequest;
class JingleThread;
+class PortAllocatorSessionFactory;
// TODO(ajwong): The SignalStrategy stuff needs to be separated out to separate
// files.
@@ -150,6 +151,7 @@ class JingleClient : public base::RefCountedThreadSafe<JingleClient>,
SignalStrategy* signal_strategy,
talk_base::NetworkManager* network_manager,
talk_base::PacketSocketFactory* socket_factory,
+ PortAllocatorSessionFactory* session_factory,
Callback* callback);
~JingleClient();
@@ -222,6 +224,7 @@ class JingleClient : public base::RefCountedThreadSafe<JingleClient>,
scoped_ptr<talk_base::NetworkManager> network_manager_;
scoped_ptr<talk_base::PacketSocketFactory> socket_factory_;
scoped_ptr<cricket::HttpPortAllocator> port_allocator_;
+ scoped_ptr<PortAllocatorSessionFactory> port_allocator_session_factory_;
scoped_ptr<cricket::SessionManager> session_manager_;
DISALLOW_COPY_AND_ASSIGN(JingleClient);

Powered by Google App Engine
This is Rietveld 408576698