Title: [231724] branches/safari-606.1.17-branch/Source/WebCore/PAL
Revision
231724
Author
[email protected]
Date
2018-05-11 15:47:19 -0700 (Fri, 11 May 2018)

Log Message

Cherry-pick r231721. rdar://problem/39806412

    Add CF_NOESCAPE decorators for tvOS and watchOS
    https://bugs.webkit.org/show_bug.cgi?id=185560

    Reviewed by Dan Bernstein.

    * pal/cf/CoreMediaSoftLink.h:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231721 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606.1.17-branch/Source/WebCore/PAL/ChangeLog (231723 => 231724)


--- branches/safari-606.1.17-branch/Source/WebCore/PAL/ChangeLog	2018-05-11 22:30:45 UTC (rev 231723)
+++ branches/safari-606.1.17-branch/Source/WebCore/PAL/ChangeLog	2018-05-11 22:47:19 UTC (rev 231724)
@@ -1,3 +1,26 @@
+2018-05-11  Jason Marcell  <[email protected]>
+
+        Cherry-pick r231721. rdar://problem/39806412
+
+    Add CF_NOESCAPE decorators for tvOS and watchOS
+    https://bugs.webkit.org/show_bug.cgi?id=185560
+    
+    Reviewed by Dan Bernstein.
+    
+    * pal/cf/CoreMediaSoftLink.h:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@231721 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-05-11  Jer Noble  <[email protected]>
+
+            Add CF_NOESCAPE decorators for tvOS and watchOS
+            https://bugs.webkit.org/show_bug.cgi?id=185560
+
+            Reviewed by Dan Bernstein.
+
+            * pal/cf/CoreMediaSoftLink.h:
+
 2018-05-08  Sihui Liu  <[email protected]>
 
         Adopt new async _savecookies SPI for keeping networking process active during flushing cookies

Modified: branches/safari-606.1.17-branch/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h (231723 => 231724)


--- branches/safari-606.1.17-branch/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-05-11 22:30:45 UTC (rev 231723)
+++ branches/safari-606.1.17-branch/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-05-11 22:47:19 UTC (rev 231724)
@@ -37,7 +37,7 @@
 #define SOFTLINK_AVKIT_FRAMEWORK() SOFT_LINK_FRAMEWORK_OPTIONAL(AVKit)
 #endif
 
-#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED <= 120000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 101400)
+#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101500) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MAX_ALLOWED < 60000) || (PLATFORM(TVOS) && __TV_OS_VERSION_MAX_ALLOWED < 130000)
 #define CMSAMPLEBUFFERCALL_NOESCAPE
 #else
 #define CMSAMPLEBUFFERCALL_NOESCAPE CF_NOESCAPE
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to