commit fe894817c48ecdd308c2c9d25de0965467f7468c
parent 6f4f2f3803e89a5695acdc0563ca21813e8705ba
Author: Dan Baker <dbaker@mozilla.com>
Date: Wed, 22 Oct 2025 13:31:20 -0600
Bug 1995393 - Vendor libwebrtc from 1bf1433cc9
Upstream commit: https://webrtc.googlesource.com/src/+/1bf1433cc9e118d2674fa1f2937e0e50f20a42c9
Delete deprecated FieldTrials::CreateNoGlobal
FieldTrials class always represent non global field trials, thus this
factory name is obsolete.
Bug: webrtc:42220378
Change-Id: I64c64092b205f309741a4b7f4119e311eb2a8015
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/403100
Commit-Queue: Per Kjellander <perkj@webrtc.org>
Reviewed-by: Per Kjellander <perkj@webrtc.org>
Auto-Submit: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#45277}
Diffstat:
2 files changed, 2 insertions(+), 8 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-22T19:28:58.779552+00:00.
+libwebrtc updated from /Users/danielbaker/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2025-10-22T19:31:09.845939+00:00.
# base of lastest vendoring
-16e1c24c07
+1bf1433cc9
diff --git a/third_party/libwebrtc/api/field_trials.h b/third_party/libwebrtc/api/field_trials.h
@@ -70,12 +70,6 @@ class FieldTrials : public FieldTrialsRegistry {
// Setting empty `group` is valid and removes the `trial`.
void Set(absl::string_view trial, absl::string_view group);
- // TODO: bugs.webrtc.org/42220378 - Delete after August 1, 2025.
- [[deprecated]]
- static std::unique_ptr<FieldTrials> CreateNoGlobal(absl::string_view s) {
- return std::make_unique<FieldTrials>(s);
- }
-
private:
explicit FieldTrials(flat_map<std::string, std::string> key_value_map)
: key_value_map_(std::move(key_value_map)) {}