Home | History | Annotate | Download | only in test

Lines Matching refs:data_channel

57   virtual bool ConnectDataChannel(webrtc::DataChannel* data_channel) OVERRIDE {
58 ASSERT(connected_channels_.find(data_channel) == connected_channels_.end());
62 LOG(LS_INFO) << "DataChannel connected " << data_channel;
63 connected_channels_.insert(data_channel);
68 webrtc::DataChannel* data_channel) OVERRIDE {
69 ASSERT(connected_channels_.find(data_channel) != connected_channels_.end());
70 LOG(LS_INFO) << "DataChannel disconnected " << data_channel;
71 connected_channels_.erase(data_channel);
133 bool IsConnected(webrtc::DataChannel* data_channel) const {
134 return connected_channels_.find(data_channel) != connected_channels_.end();