Title: [215851] trunk/Source/WebCore
Revision
215851
Author
[email protected]
Date
2017-04-26 18:26:08 -0700 (Wed, 26 Apr 2017)

Log Message

Attempt to fix a PLT regression.
<rdar://problem/31826998>

Unreviewed.

Disable passing the TypeIdentifierHint to CGImageSourceCreateIncremental()
on iOS for now.

* platform/graphics/cg/ImageDecoderCG.cpp:
(WebCore::ImageDecoder::ImageDecoder):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215850 => 215851)


--- trunk/Source/WebCore/ChangeLog	2017-04-27 01:17:01 UTC (rev 215850)
+++ trunk/Source/WebCore/ChangeLog	2017-04-27 01:26:08 UTC (rev 215851)
@@ -1,3 +1,16 @@
+2017-04-26  Said Abou-Hallawa  <[email protected]>
+
+        Attempt to fix a PLT regression.
+        <rdar://problem/31826998>
+
+        Unreviewed.
+
+        Disable passing the TypeIdentifierHint to CGImageSourceCreateIncremental()
+        on iOS for now.
+
+        * platform/graphics/cg/ImageDecoderCG.cpp:
+        (WebCore::ImageDecoder::ImageDecoder):
+
 2017-04-26  Joanmarie Diggs  <[email protected]>
 
         [ATK] ARIA buttons which have a popup should be ATK_ROLE_PUSH_BUTTON; not ATK_ROLE_COMBO_BOX
@@ -492,7 +505,8 @@
 
 2017-04-26  Said Abou-Hallawa  <[email protected]>
 
-        Attempt to fix a PLT regression.
+        Attempt to fix a JetStream regression.
+        <rdar://problem/31742414>
 
         Unreviewed.
 

Modified: trunk/Source/WebCore/platform/graphics/cg/ImageDecoderCG.cpp (215850 => 215851)


--- trunk/Source/WebCore/platform/graphics/cg/ImageDecoderCG.cpp	2017-04-27 01:17:01 UTC (rev 215850)
+++ trunk/Source/WebCore/platform/graphics/cg/ImageDecoderCG.cpp	2017-04-27 01:26:08 UTC (rev 215851)
@@ -154,7 +154,7 @@
 
 ImageDecoder::ImageDecoder(const URL& sourceURL, AlphaOption, GammaAndColorProfileOption)
 {
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 110000)
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300)
     RetainPtr<CFURLRef> url = ""
     RetainPtr<CFStringRef> utiHint = adoptCF(CGImageSourceGetTypeWithURL(url.get(), nullptr));
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to