Lines Matching full:basechannel
71 // BaseChannel contains logic common to voice and video, including
77 // vtable, and the media channel's thread using BaseChannel as the
80 class BaseChannel
85 BaseChannel(rtc::Thread* thread,
90 virtual ~BaseChannel();
161 sigslot::signal2<BaseChannel*, bool> SignalDtlsSetupFailure;
166 sigslot::signal1<BaseChannel*> SignalFirstPacketReceived;
340 class VoiceChannel : public BaseChannel {
360 return static_cast<VoiceMediaChannel*>(BaseChannel::media_channel());
402 // overrides from BaseChannel
443 class VideoChannel : public BaseChannel {
455 return static_cast<VideoMediaChannel*>(BaseChannel::media_channel());
489 // overrides from BaseChannel
531 class DataChannel : public BaseChannel {
568 return static_cast<DataMediaChannel*>(BaseChannel::media_channel());
603 // overrides from BaseChannel