Title: [258237] trunk/Source/WebCore
Revision
258237
Author
achristen...@apple.com
Date
2020-03-10 15:57:44 -0700 (Tue, 10 Mar 2020)

Log Message

Build fix.

* platform/audio/ios/MediaSessionHelperIOS.mm:
(MediaSessionHelperiOS::providePresentingApplicationPID):
Fix an unused parameter warning.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (258236 => 258237)


--- trunk/Source/WebCore/ChangeLog	2020-03-10 22:54:41 UTC (rev 258236)
+++ trunk/Source/WebCore/ChangeLog	2020-03-10 22:57:44 UTC (rev 258237)
@@ -1,3 +1,11 @@
+2020-03-10  Alex Christensen  <achristen...@webkit.org>
+
+        Build fix.
+
+        * platform/audio/ios/MediaSessionHelperIOS.mm:
+        (MediaSessionHelperiOS::providePresentingApplicationPID):
+        Fix an unused parameter warning.
+
 2020-03-10  Simon Fraser  <simon.fra...@apple.com>
 
         REGRESSION (r257920): inbox flickers and disappears when scrolling gmail

Modified: trunk/Source/WebCore/platform/audio/ios/MediaSessionHelperIOS.mm (258236 => 258237)


--- trunk/Source/WebCore/platform/audio/ios/MediaSessionHelperIOS.mm	2020-03-10 22:54:41 UTC (rev 258236)
+++ trunk/Source/WebCore/platform/audio/ios/MediaSessionHelperIOS.mm	2020-03-10 22:57:44 UTC (rev 258237)
@@ -197,6 +197,8 @@
     [[getAVSystemControllerClass() sharedAVSystemController] setAttribute:@(pid) forKey:getAVSystemController_PIDToInheritApplicationStateFrom() error:&error];
     if (error)
         WTFLogAlways("Failed to set up PID proxying: %s", error.localizedDescription.UTF8String);
+#else
+    UNUSED_PARAM(pid);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to