Title: [293421] trunk/Source/WebCore
Revision
293421
Author
[email protected]
Date
2022-04-26 03:59:48 -0700 (Tue, 26 Apr 2022)

Log Message

[GStreamer] Mark unused variable
https://bugs.webkit.org/show_bug.cgi?id=239766

Reviewed by Adrian Perez de Castro.

* platform/mock/MockRealtimeMediaSourceCenter.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (293420 => 293421)


--- trunk/Source/WebCore/ChangeLog	2022-04-26 10:29:11 UTC (rev 293420)
+++ trunk/Source/WebCore/ChangeLog	2022-04-26 10:59:48 UTC (rev 293421)
@@ -1,3 +1,12 @@
+2022-04-26  Claudio Saavedra  <[email protected]>
+
+        [GStreamer] Mark unused variable
+        https://bugs.webkit.org/show_bug.cgi?id=239766
+
+        Reviewed by Adrian Perez de Castro.
+
+        * platform/mock/MockRealtimeMediaSourceCenter.cpp:
+
 2022-04-26  Youenn Fablet  <[email protected]>
 
         Service Worker loads should not expose some ResourceTiming information

Modified: trunk/Source/WebCore/platform/mock/MockRealtimeMediaSourceCenter.cpp (293420 => 293421)


--- trunk/Source/WebCore/platform/mock/MockRealtimeMediaSourceCenter.cpp	2022-04-26 10:29:11 UTC (rev 293420)
+++ trunk/Source/WebCore/platform/mock/MockRealtimeMediaSourceCenter.cpp	2022-04-26 10:59:48 UTC (rev 293421)
@@ -188,6 +188,7 @@
 #if PLATFORM(MAC)
             return DisplayCaptureSourceCocoa::create(UniqueRef<DisplayCaptureSourceCocoa::Capturer>(makeUniqueRef<MockDisplayCapturer>(device, pageIdentifier)), device, WTFMove(hashSalt), constraints, pageIdentifier);
 #elif USE(GSTREAMER)
+            UNUSED_PARAM(pageIdentifier);
             return MockDisplayCaptureSourceGStreamer::create(device, WTFMove(hashSalt), constraints);
 #else
             return MockRealtimeVideoSource::create(String { device.persistentId() }, String { device.label() }, WTFMove(hashSalt), constraints, pageIdentifier);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to