Title: [289215] trunk/Source/WebCore
Revision
289215
Author
[email protected]
Date
2022-02-07 06:48:59 -0800 (Mon, 07 Feb 2022)

Log Message

Remove RenderObject::documentTimeline()
https://bugs.webkit.org/show_bug.cgi?id=236225

Reviewed by Dean Jackson.

Following some recent DocumentTimeline / Styleable refactoring (see bugs
236176, 236204 and 236224), this method is no longer in use.

* rendering/RenderObject.h:
(WebCore::RenderObject::documentTimeline const): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (289214 => 289215)


--- trunk/Source/WebCore/ChangeLog	2022-02-07 14:45:16 UTC (rev 289214)
+++ trunk/Source/WebCore/ChangeLog	2022-02-07 14:48:59 UTC (rev 289215)
@@ -1,3 +1,16 @@
+2022-02-07  Antoine Quint  <[email protected]>
+
+        Remove RenderObject::documentTimeline()
+        https://bugs.webkit.org/show_bug.cgi?id=236225
+
+        Reviewed by Dean Jackson.
+
+        Following some recent DocumentTimeline / Styleable refactoring (see bugs 
+        236176, 236204 and 236224), this method is no longer in use.
+
+        * rendering/RenderObject.h:
+        (WebCore::RenderObject::documentTimeline const): Deleted.
+
 2022-02-07  Alan Bujtas  <[email protected]>
 
         [LFC][IFC] WritingMode::LeftToRight expects line content flipped within the line

Modified: trunk/Source/WebCore/rendering/RenderObject.h (289214 => 289215)


--- trunk/Source/WebCore/rendering/RenderObject.h	2022-02-07 14:45:16 UTC (rev 289214)
+++ trunk/Source/WebCore/rendering/RenderObject.h	2022-02-07 14:48:59 UTC (rev 289215)
@@ -50,7 +50,6 @@
 class Color;
 class Cursor;
 class Document;
-class DocumentTimeline;
 class HitTestLocation;
 class HitTestRequest;
 class HitTestResult;
@@ -720,8 +719,6 @@
     void imageChanged(CachedImage*, const IntRect* = nullptr) override;
     virtual void imageChanged(WrappedImagePtr, const IntRect* = nullptr) { }
 
-    DocumentTimeline* documentTimeline() const;
-
     // Map points and quads through elements, potentially via 3d transforms. You should never need to call these directly; use
     // localToAbsolute/absoluteToLocal methods instead.
     virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, OptionSet<MapCoordinatesMode>, bool* wasFixed = nullptr) const;
@@ -989,11 +986,6 @@
     return *frame().page();
 }
 
-inline DocumentTimeline* RenderObject::documentTimeline() const
-{
-    return document().existingTimeline();
-}
-
 inline bool RenderObject::renderTreeBeingDestroyed() const
 {
     return document().renderTreeBeingDestroyed();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to