Title: [199922] tags/Safari-602.1.29/Source/WebCore
Revision
199922
Author
bshaf...@apple.com
Date
2016-04-22 16:01:56 -0700 (Fri, 22 Apr 2016)

Log Message

Merged r199886.

Modified Paths

Diff

Modified: tags/Safari-602.1.29/Source/WebCore/ChangeLog (199921 => 199922)


--- tags/Safari-602.1.29/Source/WebCore/ChangeLog	2016-04-22 22:58:24 UTC (rev 199921)
+++ tags/Safari-602.1.29/Source/WebCore/ChangeLog	2016-04-22 23:01:56 UTC (rev 199922)
@@ -1,5 +1,16 @@
 2016-04-22  Babak Shafiei  <bshaf...@apple.com>
 
+        Merge r199886.
+
+    2016-04-22  Dean Jackson  <d...@apple.com>
+
+            Attempting to fix Windows build. Add isHidden implementation.
+
+            * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+            (PlatformCALayerWin::isHidden):
+
+2016-04-22  Babak Shafiei  <bshaf...@apple.com>
+
         Merge r199902.
 
     2016-04-22  Ryan Haddad  <ryanhad...@apple.com>

Modified: tags/Safari-602.1.29/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp (199921 => 199922)


--- tags/Safari-602.1.29/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-04-22 22:58:24 UTC (rev 199921)
+++ tags/Safari-602.1.29/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-04-22 23:01:56 UTC (rev 199922)
@@ -437,6 +437,11 @@
     setNeedsCommit();
 }
 
+bool PlatformCALayerWin::isHidden(bool value) const
+{
+    return CACFLayerGetHidden(m_layer.get());
+}
+
 void PlatformCALayerWin::setHidden(bool value)
 {
     CACFLayerSetHidden(m_layer.get(), value);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to