Title: [275675] trunk/Source/WebCore
Revision
275675
Author
commit-qu...@webkit.org
Date
2021-04-08 13:46:22 -0700 (Thu, 08 Apr 2021)

Log Message

Remove virtual from RenderBox::availableLogicalWidth
https://bugs.webkit.org/show_bug.cgi?id=224332

Patch by Rob Buis <rb...@igalia.com> on 2021-04-08
Reviewed by Darin Adler.

Remove virtual from RenderBox::availableLogicalWidth since
it is not overridden.

* rendering/RenderBox.h:
(WebCore::RenderBox::availableLogicalWidth const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (275674 => 275675)


--- trunk/Source/WebCore/ChangeLog	2021-04-08 20:45:16 UTC (rev 275674)
+++ trunk/Source/WebCore/ChangeLog	2021-04-08 20:46:22 UTC (rev 275675)
@@ -1,3 +1,16 @@
+2021-04-08  Rob Buis  <rb...@igalia.com>
+
+        Remove virtual from RenderBox::availableLogicalWidth
+        https://bugs.webkit.org/show_bug.cgi?id=224332
+
+        Reviewed by Darin Adler.
+
+        Remove virtual from RenderBox::availableLogicalWidth since
+        it is not overridden.
+
+        * rendering/RenderBox.h:
+        (WebCore::RenderBox::availableLogicalWidth const):
+
 2021-04-08  Chris Dumez  <cdu...@apple.com>
 
         OfflineAudioContext objects are leaking

Modified: trunk/Source/WebCore/rendering/RenderBox.h (275674 => 275675)


--- trunk/Source/WebCore/rendering/RenderBox.h	2021-04-08 20:45:16 UTC (rev 275674)
+++ trunk/Source/WebCore/rendering/RenderBox.h	2021-04-08 20:46:22 UTC (rev 275675)
@@ -456,7 +456,7 @@
 
     Optional<LayoutUnit> computePercentageLogicalHeight(const Length& height) const;
 
-    virtual LayoutUnit availableLogicalWidth() const { return contentLogicalWidth(); }
+    LayoutUnit availableLogicalWidth() const { return contentLogicalWidth(); }
     virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const;
     LayoutUnit availableLogicalHeightUsing(const Length&, AvailableLogicalHeightType) const;
     
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to