Chromium Code Reviews| Index: webrtc/api/webrtcsession.h |
| diff --git a/webrtc/api/webrtcsession.h b/webrtc/api/webrtcsession.h |
| index 6164731982620030ae4db7992204a2196982a1bc..1cc54f69278a9a851f22c39c03b42151c52c715d 100644 |
| --- a/webrtc/api/webrtcsession.h |
| +++ b/webrtc/api/webrtcsession.h |
| @@ -33,6 +33,7 @@ namespace cricket { |
| class ChannelManager; |
| class DataChannel; |
| +class QuicTransportChannel; |
| class StatsReport; |
| class VideoCapturer; |
| class VideoChannel; |
| @@ -313,6 +314,7 @@ class WebRtcSession : public AudioProviderInterface, |
| webrtc::MetricsObserverInterface* metrics_observer) { |
| metrics_observer_ = metrics_observer; |
| } |
| + cricket::QuicTransportChannel* quic_transport_channel() const; |
|
pthatcher1
2016/03/30 20:34:49
Doesn't this need USE_QUIC or HAVE_QUIC as well (a
Taylor Brandstetter
2016/04/01 23:23:42
It's possible that this is NULL when it's needed.
|
| // Called when voice_channel_, video_channel_ and data_channel_ are created |
| // and destroyed. As a result of, for example, setting a new description. |