From c792014982678c66a778b5cc2332bae937816600 Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Thu, 30 Sep 2021 12:36:15 +0000 Subject: [PATCH] Bug 1733109 - narrowing conversion from 'uint32_t' (aka 'unsigned int') to signed type 'int32_t' (aka 'int') is implementation-defined in HTMLMEdiaElement.cpp. r=alwu,emilio This is Chrome-only. Depends on D126936 Differential Revision: https://phabricator.services.mozilla.com/D126937 --- dom/webidl/MediaDebugInfo.webidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/webidl/MediaDebugInfo.webidl b/dom/webidl/MediaDebugInfo.webidl index 2b0737dca792..a78c910a9cd8 100644 --- a/dom/webidl/MediaDebugInfo.webidl +++ b/dom/webidl/MediaDebugInfo.webidl @@ -229,7 +229,7 @@ dictionary EMEDebugInfo { }; dictionary HTMLMediaElementDebugInfo { - long compositorDroppedFrames = 0; + unsigned long compositorDroppedFrames = 0; EMEDebugInfo EMEInfo = {}; MediaDecoderDebugInfo decoder = {}; };