Home | History | Annotate | Download | only in webrtc

Lines Matching refs:DataChannelInterface

71 using webrtc::DataChannelInterface;
167 virtual void OnDataChannel(DataChannelInterface* data_channel) {
216 scoped_refptr<DataChannelInterface> last_datachannel_;
772 scoped_refptr<DataChannelInterface> data1 =
774 scoped_refptr<DataChannelInterface> data2 =
782 EXPECT_EQ(DataChannelInterface::kConnecting, data1->state());
783 EXPECT_EQ(DataChannelInterface::kConnecting, data2->state());
792 EXPECT_EQ(DataChannelInterface::kOpen, data1->state());
793 EXPECT_EQ(DataChannelInterface::kOpen, data2->state());
801 EXPECT_EQ(DataChannelInterface::kClosing, data1->state());
804 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
825 scoped_refptr<DataChannelInterface> data1 =
827 scoped_refptr<DataChannelInterface> data2 =
835 EXPECT_EQ(DataChannelInterface::kConnecting, data1->state());
836 EXPECT_EQ(DataChannelInterface::kConnecting, data2->state());
842 EXPECT_EQ(DataChannelInterface::kOpen, data1->state());
843 EXPECT_EQ(DataChannelInterface::kOpen, data2->state());
861 scoped_refptr<DataChannelInterface> data1 =
871 EXPECT_EQ(DataChannelInterface::kClosing, data1->state());
873 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
885 scoped_refptr<DataChannelInterface> offer_channel =
902 DataChannelInterface* received_channel = observer_.last_datachannel_;
903 EXPECT_EQ(DataChannelInterface::kConnecting, received_channel->state());
908 EXPECT_EQ(DataChannelInterface::kClosed, offer_channel->state());
913 EXPECT_EQ_WAIT(DataChannelInterface::kOpen, received_channel->state(),
928 scoped_refptr<DataChannelInterface> channel =
942 scoped_refptr<DataChannelInterface> channel =
978 scoped_refptr<DataChannelInterface> channel =
992 scoped_refptr<DataChannelInterface> channel =
1018 scoped_refptr<DataChannelInterface> channel =
1050 scoped_refptr<DataChannelInterface> data1 =
1052 scoped_refptr<DataChannelInterface> data2 =
1065 EXPECT_EQ(DataChannelInterface::kClosed, data1->state());
1066 EXPECT_EQ(DataChannelInterface::kClosed, data2->state());
1075 scoped_refptr<DataChannelInterface> offer_channel(
1091 EXPECT_EQ(DataChannelInterface::kClosed, offer_channel->state());