tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 2f88c894875c54d14ae11abdc5f20f3b2f76ef8b
parent 5e8c632ee7d48480e6a429f77ca28a5f1d6bbe8f
Author: Dan Baker <dbaker@mozilla.com>
Date:   Fri, 24 Oct 2025 13:55:34 -0600

Bug 1995393 - Vendor libwebrtc from b057f44c3f

Upstream commit: https://webrtc.googlesource.com/src/+/b057f44c3f9ec7498707c4ca7b8ce8ebbf07061e
    Revert JsepIceCandidate and IceCandidateInterface deprecation

    This reverts the jsep.h change from:
    https://webrtc-review.googlesource.com/c/src/+/404840

    This is currently blocking the roll into chromium due to required
    changes in the nearby repo.

    Bug: webrtc:42233526, webrtc:406795492
    Change-Id: I422dc44e181c7368c5bc95ebd8f6e6c3547e1f73
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/405480
    Auto-Submit: Tomas Gunnarsson <tommi@webrtc.org>
    Commit-Queue: Tomas Gunnarsson <tommi@webrtc.org>
    Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
    Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
    Reviewed-by: Harald Alvestrand <hta@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#45399}

Diffstat:
Mthird_party/libwebrtc/README.mozilla.last-vendor | 4++--
Mthird_party/libwebrtc/api/jsep.h | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/third_party/libwebrtc/README.mozilla.last-vendor b/third_party/libwebrtc/README.mozilla.last-vendor @@ -1,4 +1,4 @@ # ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc -libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-10-24T19:53:09.845289+00:00. +libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-10-24T19:55:21.136057+00:00. # base of lastest vendoring -9a358664d7 +b057f44c3f diff --git a/third_party/libwebrtc/api/jsep.h b/third_party/libwebrtc/api/jsep.h @@ -111,8 +111,8 @@ class RTC_EXPORT IceCandidate final { // TODO: webrtc:406795492 - Deprecate and eventually remove these types when no // longer referenced. They're provided here for backwards compatiblity. -using JsepIceCandidate [[deprecated("Use IceCandidate")]] = IceCandidate; -using IceCandidateInterface [[deprecated("Use IceCandidate")]] = IceCandidate; +using JsepIceCandidate = IceCandidate; +using IceCandidateInterface = IceCandidate; // Creates an IceCandidate based on SDP string. // Returns null if the sdp string can't be parsed.