Title: [219125] trunk/Source/WebCore
Revision
219125
Author
s...@apple.com
Date
2017-07-04 21:44:26 -0700 (Tue, 04 Jul 2017)

Log Message

Unreviewed, review follow-up after r218961

* platform/graphics/BitmapImage.cpp:
(WebCore::BitmapImage::updateFromSettings):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (219124 => 219125)


--- trunk/Source/WebCore/ChangeLog	2017-07-05 00:59:11 UTC (rev 219124)
+++ trunk/Source/WebCore/ChangeLog	2017-07-05 04:44:26 UTC (rev 219125)
@@ -1,3 +1,10 @@
+2017-07-04  Said Abou-Hallawa  <sabouhall...@apple.com>
+
+        Unreviewed, review follow-up after r218961
+
+        * platform/graphics/BitmapImage.cpp:
+        (WebCore::BitmapImage::updateFromSettings):
+
 2017-07-04  Antti Koivisto  <an...@apple.com>
 
         RenderThemeCocoa::mediaControlsFormattedStringForDuration is leaking NSDateComponentsFormatters

Modified: trunk/Source/WebCore/platform/graphics/BitmapImage.cpp (219124 => 219125)


--- trunk/Source/WebCore/platform/graphics/BitmapImage.cpp	2017-07-05 00:59:11 UTC (rev 219124)
+++ trunk/Source/WebCore/platform/graphics/BitmapImage.cpp	2017-07-05 04:44:26 UTC (rev 219125)
@@ -70,7 +70,9 @@
 {
     m_allowSubsampling = settings.imageSubsamplingEnabled();
 #if PLATFORM(IOS)
-    if (!IOSApplication::isIBooks())
+    if (IOSApplication::isIBooks())
+        m_allowLargeImageAsyncDecoding = false;
+    else
 #endif
         m_allowLargeImageAsyncDecoding = settings.largeImageAsyncDecodingEnabled();
     m_allowAnimatedImageAsyncDecoding = settings.animatedImageAsyncDecodingEnabled();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to