--- webrtc-7204a/third_party/webrtc/pc/codec_vendor.h.orig 2025-08-10 20:30:35.548562304 +0200 +++ webrtc-7204a/third_party/webrtc/pc/codec_vendor.h 2025-08-10 21:06:25.516311580 +0200 @@ -119,7 +119,7 @@ class CodecVendor { class CodecLookupHelper { public: virtual ~CodecLookupHelper() = default; - virtual PayloadTypeSuggester* PayloadTypeSuggester() = 0; + virtual webrtc::PayloadTypeSuggester* PayloadTypeSuggester() = 0; // Look up the codec vendor to use, depending on context. // This call may get additional arguments in the future, to aid // in selection of the correct context. --- webrtc-7204a/third_party/webrtc/pc/jsep_transport.h.orig 2025-08-10 20:30:35.552562303 +0200 +++ webrtc-7204a/third_party/webrtc/pc/jsep_transport.h 2025-08-10 21:10:32.100282629 +0200 @@ -214,7 +214,7 @@ class JsepTransport { return rtp_dtls_transport_; } - scoped_refptr SctpTransport() const { return sctp_transport_; } + scoped_refptr SctpTransport() const { return sctp_transport_; } // TODO(bugs.webrtc.org/9719): Delete method, update callers to use // SctpTransport() instead. --- webrtc-7204a/third_party/webrtc/p2p/base/port_interface.h.orig 2025-08-10 20:30:35.544562305 +0200 +++ webrtc-7204a/third_party/webrtc/p2p/base/port_interface.h 2025-08-10 20:58:44.792364738 +0200 @@ -55,7 +55,7 @@ class PortInterface { virtual ~PortInterface(); virtual IceCandidateType Type() const = 0; - virtual const Network* Network() const = 0; + virtual const webrtc::Network* Network() const = 0; // Methods to set/get ICE role and tiebreaker values. virtual void SetIceRole(IceRole role) = 0;