Title: [229459] trunk/Source/WebCore
Revision
229459
Author
[email protected]
Date
2018-03-09 05:43:56 -0800 (Fri, 09 Mar 2018)

Log Message

Remove some unused cruft in TextureMapperLayer.

The ScrollingClient class is not used anymore since r229318.
findScrollableContentsLayerAt() is similarly unused, but also lacking
an actual definition. ContentsLayerCount enum can also be purged.

Rubber-stamped by Carlos Garcia Campos.

* platform/graphics/texmap/TextureMapperLayer.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (229458 => 229459)


--- trunk/Source/WebCore/ChangeLog	2018-03-09 10:58:17 UTC (rev 229458)
+++ trunk/Source/WebCore/ChangeLog	2018-03-09 13:43:56 UTC (rev 229459)
@@ -1,3 +1,15 @@
+2018-03-09  Zan Dobersek  <[email protected]>
+
+        Remove some unused cruft in TextureMapperLayer.
+
+        The ScrollingClient class is not used anymore since r229318.
+        findScrollableContentsLayerAt() is similarly unused, but also lacking
+        an actual definition. ContentsLayerCount enum can also be purged.
+
+        Rubber-stamped by Carlos Garcia Campos.
+
+        * platform/graphics/texmap/TextureMapperLayer.h:
+
 2018-03-08  Zan Dobersek  <[email protected]>
 
         Add basic synchronization capability to Nicosia::Buffer

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h (229458 => 229459)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h	2018-03-09 10:58:17 UTC (rev 229458)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperLayer.h	2018-03-09 13:43:56 UTC (rev 229459)
@@ -38,11 +38,6 @@
     WTF_MAKE_NONCOPYABLE(TextureMapperLayer);
     WTF_MAKE_FAST_ALLOCATED;
 public:
-
-    class ScrollingClient {
-    public:
-    };
-
     TextureMapperLayer()
         : m_parent(0)
         , m_effectTarget(0)
@@ -61,7 +56,6 @@
     uint32_t id() { return m_id; }
 
     const Vector<TextureMapperLayer*>& children() const { return m_children; }
-    TextureMapperLayer* findScrollableContentsLayerAt(const FloatPoint& pos);
 
     TextureMapper* textureMapper() const { return rootLayer().m_textureMapper; }
     void setTextureMapper(TextureMapper* texmap) { m_textureMapper = texmap; }
@@ -161,11 +155,6 @@
     void setAnimatedFilters(const FilterOperations&) override;
 
     bool isVisible() const;
-    enum ContentsLayerCount {
-        NoLayersWithContent,
-        SingleLayerWithContents,
-        MultipleLayersWithContents
-    };
 
     bool shouldBlend() const;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to