From 886815bc36ee0b8b559a29ee1d08f0ab50622917 Mon Sep 17 00:00:00 2001 From: deadbeef Date: Wed, 29 Jun 2016 15:21:04 -0700 Subject: [PATCH] Add back P2PTransportChannel.Connect, for Chromium. Will remove it as soon as Chromium does a roll and can stop using it. TBR=pthatcher@webrtc.org NOTRY=True Review-Url: https://codereview.webrtc.org/2110853005 Cr-Commit-Position: refs/heads/master@{#13332} --- webrtc/p2p/base/p2ptransportchannel.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webrtc/p2p/base/p2ptransportchannel.h b/webrtc/p2p/base/p2ptransportchannel.h index 59bb773bf4..d90cc61ebc 100644 --- a/webrtc/p2p/base/p2ptransportchannel.h +++ b/webrtc/p2p/base/p2ptransportchannel.h @@ -93,6 +93,9 @@ class P2PTransportChannel : public TransportChannelImpl, void SetRemoteIceCredentials(const std::string& ice_ufrag, const std::string& ice_pwd) override; void SetRemoteIceMode(IceMode mode) override; + // TODO(deadbeef): Deprecated. Remove when Chromium's + // IceTransportChannel does not depend on this. + void Connect() {} void MaybeStartGathering() override; IceGatheringState gathering_state() const override { return gathering_state_;