| Index: webrtc/api/webrtcsession.h
|
| diff --git a/webrtc/api/webrtcsession.h b/webrtc/api/webrtcsession.h
|
| index 1408b22644a0d16abdb3662fb86d4c98e0080db5..f473efea400573e438223983abc61564a23d02d9 100644
|
| --- a/webrtc/api/webrtcsession.h
|
| +++ b/webrtc/api/webrtcsession.h
|
| @@ -138,14 +138,15 @@ class WebRtcSession : public AudioProviderInterface,
|
| };
|
|
|
| WebRtcSession(webrtc::MediaControllerInterface* media_controller,
|
| - rtc::Thread* signaling_thread,
|
| + rtc::Thread* network_thread,
|
| rtc::Thread* worker_thread,
|
| + rtc::Thread* signaling_thread,
|
| cricket::PortAllocator* port_allocator);
|
| virtual ~WebRtcSession();
|
|
|
| // These are const to allow them to be called from const methods.
|
| - rtc::Thread* signaling_thread() const { return signaling_thread_; }
|
| rtc::Thread* worker_thread() const { return worker_thread_; }
|
| + rtc::Thread* signaling_thread() const { return signaling_thread_; }
|
| cricket::PortAllocator* port_allocator() const { return port_allocator_; }
|
|
|
| // The ID of this session.
|
| @@ -467,8 +468,8 @@ class WebRtcSession : public AudioProviderInterface,
|
|
|
| void OnSentPacket_w(const rtc::SentPacket& sent_packet);
|
|
|
| - rtc::Thread* const signaling_thread_;
|
| rtc::Thread* const worker_thread_;
|
| + rtc::Thread* const signaling_thread_;
|
| cricket::PortAllocator* const port_allocator_;
|
|
|
| State state_ = STATE_INIT;
|
|
|