Title: [238152] trunk/Source/WebCore
Revision
238152
Author
ross.kirsl...@sony.com
Date
2018-11-13 15:28:06 -0800 (Tue, 13 Nov 2018)

Log Message

[AppleWin] Unreviewed build fix after r238108.

* platform/graphics/ca/win/PlatformCALayerWin.cpp:
(printLayer):
(PlatformCALayerWin::embeddedViewID const):
* platform/graphics/ca/win/PlatformCALayerWin.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (238151 => 238152)


--- trunk/Source/WebCore/ChangeLog	2018-11-13 23:23:02 UTC (rev 238151)
+++ trunk/Source/WebCore/ChangeLog	2018-11-13 23:28:06 UTC (rev 238152)
@@ -1,3 +1,12 @@
+2018-11-13  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [AppleWin] Unreviewed build fix after r238108.
+
+        * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+        (printLayer):
+        (PlatformCALayerWin::embeddedViewID const):
+        * platform/graphics/ca/win/PlatformCALayerWin.h:
+
 2018-11-13  Youenn Fablet  <you...@apple.com>
 
         RTCPeerConnection.getTransceivers is not always exposing all transceivers

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


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2018-11-13 23:23:02 UTC (rev 238151)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2018-11-13 23:28:06 UTC (rev 238152)
@@ -762,6 +762,7 @@
     char* layerTypeName = nullptr;
     switch (layer->layerType()) {
     case PlatformCALayer::LayerTypeLayer: layerTypeName = "layer"; break;
+    case PlatformCALayer::LayerTypeEditableImageLayer:
     case PlatformCALayer::LayerTypeWebLayer: layerTypeName = "web-layer"; break;
     case PlatformCALayer::LayerTypeSimpleLayer: layerTypeName = "simple-layer"; break;
     case PlatformCALayer::LayerTypeTransformLayer: layerTypeName = "transform-layer"; break;
@@ -946,6 +947,12 @@
     return PlatformCALayerWin::create(layerType, client);
 }
 
+GraphicsLayer::EmbeddedViewID PlatformCALayerWin::embeddedViewID() const
+{
+    ASSERT_NOT_REACHED();
+    return 0;
+}
+
 TiledBacking* PlatformCALayerWin::tiledBacking()
 {
     if (!usesTiledBackingLayer())

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


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2018-11-13 23:23:02 UTC (rev 238151)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.h	2018-11-13 23:28:06 UTC (rev 238152)
@@ -157,6 +157,8 @@
     GraphicsLayer::CustomAppearance customAppearance() const override { return m_customAppearance; }
     void updateCustomAppearance(GraphicsLayer::CustomAppearance customAppearance) override { m_customAppearance = customAppearance; }
 
+    GraphicsLayer::EmbeddedViewID embeddedViewID() const override;
+
     TiledBacking* tiledBacking() override;
     
     PlatformCALayer* rootLayer() const override;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to