commit 0fb808d7e9497a7e8946f519bdfdcb7cc00b3447
parent b6661b911035f287e0874997150c02a02912b933
Author: Dan Baker <dbaker@mozilla.com>
Date: Thu, 23 Oct 2025 16:32:00 -0600
Bug 1995393 - Vendor libwebrtc from bd40e642b1
Upstream commit: https://webrtc.googlesource.com/src/+/bd40e642b19a89c3c74d0f5e9f44a82a2e5d6f6b
Remove unused ContentInfo constructor.
Besides being unused, it allows for constructing a ContentInfo instance
without providing a mid, which should be required.
Bug: none
Change-Id: I3a19fc960db64acebc748406b91d1ae9c2132181
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/404820
Auto-Submit: Tomas Gunnarsson <tommi@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Tomas Gunnarsson <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#45358}
Diffstat:
2 files changed, 2 insertions(+), 3 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-23T22:28:52.169115+00:00.
+libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-10-23T22:31:48.112733+00:00.
# base of lastest vendoring
-c6c628c298
+bd40e642b1
diff --git a/third_party/libwebrtc/pc/session_description.h b/third_party/libwebrtc/pc/session_description.h
@@ -383,7 +383,6 @@ enum class MediaProtocolType {
// Owns the description.
class RTC_EXPORT ContentInfo {
public:
- explicit ContentInfo(MediaProtocolType type) : type(type) {}
ContentInfo(MediaProtocolType type,
absl::string_view mid,
std::unique_ptr<MediaContentDescription> description,