Commit 19988957 authored by Michael Froman's avatar Michael Froman
Browse files

Bug 1924098 - Vendor libwebrtc from 28ce65c6f9

Upstream commit: https://webrtc.googlesource.com/src/+/28ce65c6f97bb6b236fb4840174e8540f77b0aab
    Apply include-cleaner to api direct files

    Bug: webrtc:42226242
    Change-Id: Ia1e6021fc18a30b6da9b4a43118167b6ae173717
    Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/360680


    Commit-Queue: Dor Hen <dorhen@meta.com>
    Reviewed-by: default avatarMirko Bonadei <mbonadei@webrtc.org>
    Reviewed-by: default avatarHarald Alvestrand <hta@webrtc.org>
    Cr-Commit-Position: refs/heads/main@{#42993}
parent af36f217
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -32766,3 +32766,6 @@ dc56a36ff8
# MOZ_LIBWEBRTC_SRC=/home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc MOZ_LIBWEBRTC_BRANCH=mozpatches bash dom/media/webrtc/third_party_build/fast-forward-libwebrtc.sh
# base of lastest vendoring
21c456e388
# MOZ_LIBWEBRTC_SRC=/home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc MOZ_LIBWEBRTC_BRANCH=mozpatches bash dom/media/webrtc/third_party_build/fast-forward-libwebrtc.sh
# base of lastest vendoring
28ce65c6f9
+2 −0
Original line number Diff line number Diff line
@@ -21868,3 +21868,5 @@ libwebrtc updated from /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc
libwebrtc updated from /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-10-15T23:39:55.569499.
# ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc
libwebrtc updated from /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-10-15T23:40:50.120766.
# ./mach python dom/media/webrtc/third_party_build/vendor-libwebrtc.py --from-local /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc --commit mozpatches libwebrtc
libwebrtc updated from /home/mfroman/mozilla/elm/.moz-fast-forward/moz-libwebrtc commit mozpatches on 2024-10-15T23:41:47.053593.
+2 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ rtc_library("media_stream_interface") {
    ":sequence_checker",
    ":video_track_source_constraints",
    "../rtc_base:checks",
    "../rtc_base:macromagic",
    "../rtc_base/system:no_unique_address",
    "../rtc_base/system:rtc_export",
    "audio:audio_processing_statistics",
@@ -499,6 +500,7 @@ rtc_source_set("make_ref_counted") {
  sources = [ "make_ref_counted.h" ]
  deps = [
    ":ref_count",
    ":scoped_refptr",
    "../rtc_base:refcount",
  ]
}
+2 −0
Original line number Diff line number Diff line
@@ -102,6 +102,7 @@ specific_include_rules = {

  "packet_socket_factory\.h": [
    "+rtc_base/async_packet_socket.h",
    "+rtc_base/socket_address.h",
  ],

  "peer_connection_interface\.h": [
@@ -171,6 +172,7 @@ specific_include_rules = {

  "notifier\.h": [
    "+rtc_base/system/no_unique_address.h",
    "+rtc_base/thread_annotations.h",
  ],

  "priority\.h": [
+0 −2
Original line number Diff line number Diff line
@@ -11,11 +11,9 @@
#ifndef API_ASYNC_DNS_RESOLVER_H_
#define API_ASYNC_DNS_RESOLVER_H_

#include <functional>
#include <memory>

#include "absl/functional/any_invocable.h"
#include "rtc_base/checks.h"
#include "rtc_base/socket_address.h"
#include "rtc_base/system/rtc_export.h"

Loading