Title: [183243] trunk/Source/WebCore
Revision
183243
Author
[email protected]
Date
2015-04-23 21:52:27 -0700 (Thu, 23 Apr 2015)

Log Message

Fix Windows build.

* platform/graphics/ca/win/PlatformCALayerWin.cpp:
(PlatformCALayerWin::setBackingStoreAttached):
(PlatformCALayerWin::backingStoreAttached):
* platform/graphics/ca/win/PlatformCALayerWin.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (183242 => 183243)


--- trunk/Source/WebCore/ChangeLog	2015-04-24 04:36:12 UTC (rev 183242)
+++ trunk/Source/WebCore/ChangeLog	2015-04-24 04:52:27 UTC (rev 183243)
@@ -1,5 +1,14 @@
 2015-04-23  Simon Fraser  <[email protected]>
 
+        Fix Windows build.
+
+        * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+        (PlatformCALayerWin::setBackingStoreAttached):
+        (PlatformCALayerWin::backingStoreAttached):
+        * platform/graphics/ca/win/PlatformCALayerWin.h:
+
+2015-04-23  Simon Fraser  <[email protected]>
+
         Make it possible to detach GraphicsLayerCA backing store
         https://bugs.webkit.org/show_bug.cgi?id=144140
 

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


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2015-04-24 04:36:12 UTC (rev 183242)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2015-04-24 04:52:27 UTC (rev 183243)
@@ -428,6 +428,15 @@
     setNeedsCommit();
 }
 
+void PlatformCALayerWin::setBackingStoreAttached(bool)
+{
+}
+
+bool PlatformCALayerWin::backingStoreAttached() const
+{
+    return true;
+}
+
 void PlatformCALayerWin::setGeometryFlipped(bool value)
 {
     CACFLayerSetGeometryFlipped(m_layer.get(), value);

Modified: trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h (183242 => 183243)


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2015-04-24 04:36:12 UTC (rev 183242)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2015-04-24 04:52:27 UTC (rev 183243)
@@ -80,6 +80,9 @@
 
     virtual void setHidden(bool) override;
 
+    virtual void setBackingStoreAttached(bool) override;
+    virtual bool backingStoreAttached() const override;
+
     virtual void setGeometryFlipped(bool) override;
 
     virtual bool isDoubleSided() const override;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to