| Index: webrtc/p2p/base/transportchannelimpl.h
|
| diff --git a/webrtc/p2p/base/transportchannelimpl.h b/webrtc/p2p/base/transportchannelimpl.h
|
| index 3aca951a2370537b4c5c88a309708f592480729b..b9ef4d3a99b71e80e9de203dcabb8ba32031bde5 100644
|
| --- a/webrtc/p2p/base/transportchannelimpl.h
|
| +++ b/webrtc/p2p/base/transportchannelimpl.h
|
| @@ -41,7 +41,7 @@ class TransportChannelImpl : public TransportChannel {
|
| // For ICE channels.
|
| virtual IceRole GetIceRole() const = 0;
|
| virtual void SetIceRole(IceRole role) = 0;
|
| - virtual void SetIceTiebreaker(uint64 tiebreaker) = 0;
|
| + virtual void SetIceTiebreaker(uint64_t tiebreaker) = 0;
|
| // TODO(pthatcher): Remove this once it's no longer called in
|
| // remoting/protocol/libjingle_transport_factory.cc
|
| virtual void SetIceProtocolType(IceProtocolType type) {}
|
| @@ -87,8 +87,8 @@ class TransportChannelImpl : public TransportChannel {
|
|
|
| // Set DTLS Remote fingerprint. Must be after local identity set.
|
| virtual bool SetRemoteFingerprint(const std::string& digest_alg,
|
| - const uint8* digest,
|
| - size_t digest_len) = 0;
|
| + const uint8_t* digest,
|
| + size_t digest_len) = 0;
|
|
|
| virtual bool SetSslRole(rtc::SSLRole role) = 0;
|
|
|
|
|