Title: [202726] trunk/Source/WebCore
Revision
202726
Author
fred.w...@free.fr
Date
2016-07-01 00:06:42 -0700 (Fri, 01 Jul 2016)

Log Message

Small cleanup: Remove unused functions RenderObject::isRenderMathML*Wrapper
https://bugs.webkit.org/show_bug.cgi?id=159333

Patch by Frederic Wang <fw...@igalia.com> on 2016-07-01
Reviewed by Alex Christensen.

After the refactoring of RenderMathMLRoot and RenderMathMLScripts, the anonymous flexbox
wrappers used in the old layout implementation have been removed. We thus remove the
corresponding isRender* function from RenderObject.

No new tests, behavior is unchanged.

* rendering/RenderObject.h:
(WebCore::RenderObject::isRenderMathMLRootWrapper): Deleted.
(WebCore::RenderObject::isRenderMathMLScriptsWrapper): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202725 => 202726)


--- trunk/Source/WebCore/ChangeLog	2016-07-01 06:58:29 UTC (rev 202725)
+++ trunk/Source/WebCore/ChangeLog	2016-07-01 07:06:42 UTC (rev 202726)
@@ -1,3 +1,20 @@
+2016-07-01  Frederic Wang  <fw...@igalia.com>
+
+        Small cleanup: Remove unused functions RenderObject::isRenderMathML*Wrapper
+        https://bugs.webkit.org/show_bug.cgi?id=159333
+
+        Reviewed by Alex Christensen.
+
+        After the refactoring of RenderMathMLRoot and RenderMathMLScripts, the anonymous flexbox
+        wrappers used in the old layout implementation have been removed. We thus remove the
+        corresponding isRender* function from RenderObject.
+
+        No new tests, behavior is unchanged.
+
+        * rendering/RenderObject.h:
+        (WebCore::RenderObject::isRenderMathMLRootWrapper): Deleted.
+        (WebCore::RenderObject::isRenderMathMLScriptsWrapper): Deleted.
+
 2016-07-01  Andreas Kling  <akl...@apple.com>
 
         [Mac] Get rid of the old timey rubber-banding linen pattern.

Modified: trunk/Source/WebCore/rendering/RenderObject.h (202725 => 202726)


--- trunk/Source/WebCore/rendering/RenderObject.h	2016-07-01 06:58:29 UTC (rev 202725)
+++ trunk/Source/WebCore/rendering/RenderObject.h	2016-07-01 07:06:42 UTC (rev 202726)
@@ -343,11 +343,9 @@
     virtual bool isRenderMathMLFenced() const { return false; }
     virtual bool isRenderMathMLFraction() const { return false; }
     virtual bool isRenderMathMLRoot() const { return false; }
-    virtual bool isRenderMathMLRootWrapper() const { return false; }
     virtual bool isRenderMathMLSpace() const { return false; }
     virtual bool isRenderMathMLSquareRoot() const { return false; }
     virtual bool isRenderMathMLScripts() const { return false; }
-    virtual bool isRenderMathMLScriptsWrapper() const { return false; }
     virtual bool isRenderMathMLToken() const { return false; }
     virtual bool isRenderMathMLUnderOver() const { return false; }
 #endif // ENABLE(MATHML)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to