commit d6706fdd97cb86b71dc921be12b168417d39a050
parent be4e3c0b6110a2aab18751010f84a057a0bb6957
Author: Dan Baker <dbaker@mozilla.com>
Date: Mon, 27 Oct 2025 16:21:09 -0600
Bug 1995393 (MOZ) - Added ccfbMessagesReceived to CallBasicStats.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/dom/media/webrtc/libwebrtc_overrides/call/call_basic_stats.h b/dom/media/webrtc/libwebrtc_overrides/call/call_basic_stats.h
@@ -7,6 +7,7 @@
#ifndef DOM_MEDIA_WEBRTC_LIBWEBRTCOVERRIDES_CALL_CALL_BASIC_STATS_H_
#define DOM_MEDIA_WEBRTC_LIBWEBRTCOVERRIDES_CALL_CALL_BASIC_STATS_H_
+#include <optional>
#include <string>
namespace webrtc {
@@ -20,6 +21,7 @@ struct CallBasicStats {
int recv_bandwidth_bps = 0; // Estimated available receive bandwidth.
int64_t pacer_delay_ms = 0;
int64_t rtt_ms = -1;
+ std::optional<int64_t> ccfb_messages_received = std::nullopt;
};
} // namespace webrtc