Home
last modified time | relevance | path

Searched refs:IceTransportChannel (Results 1 – 4 of 4) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/protocol/
H A Dice_transport_channel.cc50 IceTransportChannel::IceTransportChannel( in IceTransportChannel() function in remoting::protocol::IceTransportChannel
59 IceTransportChannel::~IceTransportChannel() { in ~IceTransportChannel()
104 this, &IceTransportChannel::OnRouteChange); in Connect()
136 void IceTransportChannel::NotifyConnected() { in NotifyConnected()
156 void IceTransportChannel::AddRemoteCandidate( in AddRemoteCandidate()
179 bool IceTransportChannel::is_connected() const { in is_connected()
184 void IceTransportChannel::OnCandidateGathered( in OnCandidateGathered()
191 void IceTransportChannel::OnRouteChange( in OnRouteChange()
199 void IceTransportChannel::OnWritableState( in OnWritableState()
219 void IceTransportChannel::OnChannelDestroyed() { in OnChannelDestroyed()
[all …]
H A Dice_transport_channel.h37 class IceTransportChannel : public sigslot::has_slots<> {
46 virtual void OnChannelIceCredentials(IceTransportChannel* transport,
53 virtual void OnChannelCandidate(IceTransportChannel* transport,
58 virtual void OnChannelRouteChange(IceTransportChannel* transport,
62 virtual void OnChannelFailed(IceTransportChannel* transport) = 0;
65 virtual void OnChannelDeleted(IceTransportChannel* transport) = 0;
71 explicit IceTransportChannel(
73 ~IceTransportChannel() override;
134 base::WeakPtrFactory<IceTransportChannel> weak_factory_{this};
136 DISALLOW_COPY_AND_ASSIGN(IceTransportChannel);
H A Dice_transport.h28 public IceTransportChannel::Delegate,
55 typedef std::map<std::string, IceTransportChannel*> ChannelsMap;
64 void AddPendingRemoteTransportInfo(IceTransportChannel* channel);
67 void OnChannelIceCredentials(IceTransportChannel* transport,
70 void OnChannelCandidate(IceTransportChannel* transport,
72 void OnChannelRouteChange(IceTransportChannel* transport,
74 void OnChannelFailed(IceTransportChannel* transport) override;
75 void OnChannelDeleted(IceTransportChannel* transport) override;
H A Dice_transport.cc105 std::unique_ptr<IceTransportChannel> channel( in CreateChannel()
106 new IceTransportChannel(transport_context_)); in CreateChannel()
121 void IceTransport::AddPendingRemoteTransportInfo(IceTransportChannel* channel) { in AddPendingRemoteTransportInfo()
143 void IceTransport::OnChannelIceCredentials(IceTransportChannel* channel, in OnChannelIceCredentials()
151 void IceTransport::OnChannelCandidate(IceTransportChannel* channel, in OnChannelCandidate()
158 void IceTransport::OnChannelRouteChange(IceTransportChannel* channel, in OnChannelRouteChange()
164 void IceTransport::OnChannelFailed(IceTransportChannel* channel) { in OnChannelFailed()
168 void IceTransport::OnChannelDeleted(IceTransportChannel* channel) { in OnChannelDeleted()