Title: [218047] trunk/Source/WebCore
Revision
218047
Author
[email protected]
Date
2017-06-09 22:19:32 -0700 (Fri, 09 Jun 2017)

Log Message

Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.

* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::seekableTimeRangesLastModifiedTime):
(WebCore::MediaPlayerPrivateAVFoundationObjC::liveUpdateInterval):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (218046 => 218047)


--- trunk/Source/WebCore/ChangeLog	2017-06-10 05:11:27 UTC (rev 218046)
+++ trunk/Source/WebCore/ChangeLog	2017-06-10 05:19:32 UTC (rev 218047)
@@ -1,3 +1,11 @@
+2017-06-09  Dan Bernstein  <[email protected]>
+
+        Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.
+
+        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+        (WebCore::MediaPlayerPrivateAVFoundationObjC::seekableTimeRangesLastModifiedTime):
+        (WebCore::MediaPlayerPrivateAVFoundationObjC::liveUpdateInterval):
+
 2017-06-09  Yoav Weiss  <[email protected]>
 
         [preload] Fix builds with ENABLE_VIDEO_TRACK set to false
@@ -27,7 +35,7 @@
 
 2017-06-09  Dan Bernstein  <[email protected]>
 
-        Fixed building with the macOS 10.13 Apple Internal SDK when targeting macOS 10.12.
+        Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.
 
         * platform/spi/mac/AVFoundationSPI.h:
 

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (218046 => 218047)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2017-06-10 05:11:27 UTC (rev 218046)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2017-06-10 05:19:32 UTC (rev 218047)
@@ -1472,7 +1472,7 @@
 
 double MediaPlayerPrivateAVFoundationObjC::seekableTimeRangesLastModifiedTime() const
 {
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000)
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000)
     return [m_avPlayerItem seekableTimeRangesLastModifiedTime];
 #else
     return 0;
@@ -1481,7 +1481,7 @@
 
 double MediaPlayerPrivateAVFoundationObjC::liveUpdateInterval() const
 {
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000)
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000)
     return [m_avPlayerItem liveUpdateInterval];
 #else
     return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to