Title: [215905] trunk/Source/WebCore
Revision
215905
Author
s...@apple.com
Date
2017-04-27 16:36:45 -0700 (Thu, 27 Apr 2017)

Log Message

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

Unreviewed.

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

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215904 => 215905)


--- trunk/Source/WebCore/ChangeLog	2017-04-27 23:24:58 UTC (rev 215904)
+++ trunk/Source/WebCore/ChangeLog	2017-04-27 23:36:45 UTC (rev 215905)
@@ -1,3 +1,16 @@
+2017-04-27  Said Abou-Hallawa  <sabouhall...@apple.com>
+
+        Attempt to fix a PLT regression on Mac
+        <rdar://problem/31826998>
+
+        Unreviewed.
+
+        Disable passing the TypeIdentifierHint to CGImageSourceCreateIncremental()
+        on Mac for now.
+
+        * platform/graphics/cg/ImageDecoderCG.cpp:
+        (WebCore::ImageDecoder::ImageDecoder):
+
 2017-04-27  Daniel Bates  <daba...@apple.com>
 
         Rename callerDOMWindow()/CallerDocument to incumbentDOMWindow()/IncumbentDocument

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


--- trunk/Source/WebCore/platform/graphics/cg/ImageDecoderCG.cpp	2017-04-27 23:24:58 UTC (rev 215904)
+++ trunk/Source/WebCore/platform/graphics/cg/ImageDecoderCG.cpp	2017-04-27 23:36:45 UTC (rev 215905)
@@ -154,7 +154,7 @@
 
 ImageDecoder::ImageDecoder(const URL& sourceURL, AlphaOption, GammaAndColorProfileOption)
 {
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300)
+#if 0
     RetainPtr<CFURLRef> url = ""
     RetainPtr<CFStringRef> utiHint = adoptCF(CGImageSourceGetTypeWithURL(url.get(), nullptr));
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to