Title: [259698] trunk/Source/WebCore
Revision
259698
Author
[email protected]
Date
2020-04-07 17:59:37 -0700 (Tue, 07 Apr 2020)

Log Message

Unreviewed. remove the build warning below since r243033.
warning: unused parameter ‘pageMuted’ [-Wunused-parameter]

No new tests, no new behaviors.

* platform/mediastream/RealtimeMediaSource.cpp:
(WebCore::RealtimeMediaSource::setInterrupted):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (259697 => 259698)


--- trunk/Source/WebCore/ChangeLog	2020-04-08 00:43:18 UTC (rev 259697)
+++ trunk/Source/WebCore/ChangeLog	2020-04-08 00:59:37 UTC (rev 259698)
@@ -1,3 +1,13 @@
+2020-04-07  Joonghun Park  <[email protected]>
+
+        Unreviewed. remove the build warning below since r243033.
+        warning: unused parameter ‘pageMuted’ [-Wunused-parameter]
+
+        No new tests, no new behaviors.
+
+        * platform/mediastream/RealtimeMediaSource.cpp:
+        (WebCore::RealtimeMediaSource::setInterrupted):
+
 2020-04-07  Chris Fleizach  <[email protected]>
 
         AX: VoiceOver can't activate combobox when textfield is inside it

Modified: trunk/Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp (259697 => 259698)


--- trunk/Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp	2020-04-08 00:43:18 UTC (rev 259697)
+++ trunk/Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp	2020-04-08 00:59:37 UTC (rev 259698)
@@ -76,6 +76,10 @@
 
 void RealtimeMediaSource::setInterrupted(bool interrupted, bool pageMuted)
 {
+#if RELEASE_LOG_DISABLED
+    UNUSED_PARAM(pageMuted);
+#endif
+
     ALWAYS_LOG_IF(m_logger, LOGIDENTIFIER, interrupted, ", page muted : ", pageMuted);
     setMuted(interrupted);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to