Title: [201915] trunk/Source/WebCore
Revision
201915
Author
[email protected]
Date
2016-06-09 23:36:38 -0700 (Thu, 09 Jun 2016)

Log Message

Fix AppleWin build after r201901.
https://bugs.webkit.org/show_bug.cgi?id=119839

* platform/graphics/ca/win/PlatformCALayerWin.cpp:
(PlatformCALayerWin::backingStoreAttached):
(PlatformCALayerWin::userInteractionEnabled):
(PlatformCALayerWin::setUserInteractionEnabled):
(PlatformCALayerWin::geometryFlipped):
* platform/graphics/ca/win/PlatformCALayerWin.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (201914 => 201915)


--- trunk/Source/WebCore/ChangeLog	2016-06-10 06:11:26 UTC (rev 201914)
+++ trunk/Source/WebCore/ChangeLog	2016-06-10 06:36:38 UTC (rev 201915)
@@ -1,3 +1,15 @@
+2016-06-09  Alex Christensen  <[email protected]>
+
+        Fix AppleWin build after r201901.
+        https://bugs.webkit.org/show_bug.cgi?id=119839
+
+        * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+        (PlatformCALayerWin::backingStoreAttached):
+        (PlatformCALayerWin::userInteractionEnabled):
+        (PlatformCALayerWin::setUserInteractionEnabled):
+        (PlatformCALayerWin::geometryFlipped):
+        * platform/graphics/ca/win/PlatformCALayerWin.h:
+
 2016-06-09  Chris Fleizach  <[email protected]>
 
         AX: VoiceOver Unable to View Download Progress or Completion Status for Mail Attachments

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


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-06-10 06:11:26 UTC (rev 201914)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2016-06-10 06:36:38 UTC (rev 201915)
@@ -466,6 +466,15 @@
     return true;
 }
 
+bool PlatformCALayerWin::userInteractionEnabled() const
+{
+    return true;
+}
+ 
+void PlatformCALayerWin::setUserInteractionEnabled(bool)
+{
+}
+
 bool PlatformCALayerWin::geometryFlipped() const
 {
     return CACFLayerIsGeometryFlipped(m_layer.get());

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


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2016-06-10 06:11:26 UTC (rev 201914)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2016-06-10 06:36:38 UTC (rev 201915)
@@ -23,8 +23,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef PlatformCALayerWin_h
-#define PlatformCALayerWin_h
+#pragma once
 
 #include "PlatformCALayer.h"
 #include <wtf/HashMap.h>
@@ -85,6 +84,9 @@
     bool contentsHidden() const override;
     void setContentsHidden(bool) override;
 
+    bool userInteractionEnabled() const override;
+    void setUserInteractionEnabled(bool) override;
+
     void setBackingStoreAttached(bool) override;
     bool backingStoreAttached() const override;
 
@@ -170,5 +172,3 @@
 };
 
 }
-
-#endif // PlatformCALayerWin_h
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to