Title: [199886] trunk/Source/WebCore
Revision
199886
Author
d...@apple.com
Date
2016-04-22 12:01:06 -0700 (Fri, 22 Apr 2016)

Log Message

Attempting to fix Windows build. Add isHidden implementation.

* platform/graphics/ca/win/PlatformCALayerWin.cpp:
(PlatformCALayerWin::isHidden):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (199885 => 199886)


--- trunk/Source/WebCore/ChangeLog	2016-04-22 18:59:28 UTC (rev 199885)
+++ trunk/Source/WebCore/ChangeLog	2016-04-22 19:01:06 UTC (rev 199886)
@@ -1,3 +1,10 @@
+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  Brady Eidson  <beid...@apple.com>
 
         Attempt at a Windows build fix.

Modified: trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp (199885 => 199886)


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-04-22 18:59:28 UTC (rev 199885)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-04-22 19:01:06 UTC (rev 199886)
@@ -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