Index: webrtc/p2p/base/p2ptransportchannel.h |
diff --git a/webrtc/p2p/base/p2ptransportchannel.h b/webrtc/p2p/base/p2ptransportchannel.h |
index 335ee7d166205040c24b3cb0a74dc12bec59ca97..2f75b055a596d6859c68e4f3189a0d67f14b6cc6 100644 |
--- a/webrtc/p2p/base/p2ptransportchannel.h |
+++ b/webrtc/p2p/base/p2ptransportchannel.h |
@@ -63,6 +63,8 @@ class P2PTransportChannel : public TransportChannelImpl, |
virtual void SetIceRole(IceRole role); |
virtual IceRole GetIceRole() const { return ice_role_; } |
virtual void SetIceTiebreaker(uint64 tiebreaker); |
+ virtual bool GetIceProtocolType(IceProtocolType* type) const; |
+ virtual void SetIceProtocolType(IceProtocolType type); |
virtual void SetIceCredentials(const std::string& ice_ufrag, |
const std::string& ice_pwd); |
virtual void SetRemoteIceCredentials(const std::string& ice_ufrag, |
@@ -244,6 +246,7 @@ class P2PTransportChannel : public TransportChannelImpl, |
std::string ice_pwd_; |
std::string remote_ice_ufrag_; |
std::string remote_ice_pwd_; |
+ IceProtocolType protocol_type_; |
IceMode remote_ice_mode_; |
IceRole ice_role_; |
uint64 tiebreaker_; |