Title: [282761] trunk/Source/WebCore
Revision
282761
Author
cdu...@apple.com
Date
2021-09-20 10:57:56 -0700 (Mon, 20 Sep 2021)

Log Message

Unreviewed iOS debug build fix after r282755.

* platform/ios/VideoFullscreenInterfaceAVKit.mm:
(VideoFullscreenInterfaceAVKit::prepareForPictureInPictureStopWithCompletionHandler):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (282760 => 282761)


--- trunk/Source/WebCore/ChangeLog	2021-09-20 17:57:11 UTC (rev 282760)
+++ trunk/Source/WebCore/ChangeLog	2021-09-20 17:57:56 UTC (rev 282761)
@@ -1,3 +1,10 @@
+2021-09-20  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed iOS debug build fix after r282755.
+
+        * platform/ios/VideoFullscreenInterfaceAVKit.mm:
+        (VideoFullscreenInterfaceAVKit::prepareForPictureInPictureStopWithCompletionHandler):
+
 2021-09-20  Johnson Zhou  <qiaosong_z...@apple.com>
 
         Add support for CSSUnparsedValue parsing through CSSStyleValue.parse()

Modified: trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm (282760 => 282761)


--- trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2021-09-20 17:57:11 UTC (rev 282760)
+++ trunk/Source/WebCore/platform/ios/VideoFullscreenInterfaceAVKit.mm	2021-09-20 17:57:56 UTC (rev 282761)
@@ -1243,7 +1243,7 @@
     }
 
     prepareForPictureInPictureStop([protectedThis = Ref { *this }, strongCompletionHandler = adoptNS([completionHandler copy])](bool restored)  {
-        LOG(Fullscreen, "VideoFullscreenInterfaceAVKit::prepareForPictureInPictureStopWithCompletionHandler lambda(%p) - restored(%s)", protectedThis.get(), boolString(restored));
+        LOG(Fullscreen, "VideoFullscreenInterfaceAVKit::prepareForPictureInPictureStopWithCompletionHandler lambda(%p) - restored(%s)", protectedThis.ptr(), boolString(restored));
         ((void (^)(BOOL))strongCompletionHandler.get())(restored);
     });
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to