Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp

Issue 13679002: Add StyleChangeState to get rid of a bunch of static state in the render tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp
diff --git a/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp b/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp
index 05a3ef63585636a3f18adbf1316b0b66d679c18f..6e1ea77731fa3c36996a5bd357c16f70c21cb5de 100644
--- a/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp
+++ b/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp
@@ -106,9 +106,9 @@ void RenderMathMLFraction::addChild(RenderObject* child, RenderObject* /* before
updateFromElement();
}
-void RenderMathMLFraction::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
+void RenderMathMLFraction::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle, const StyleChangeState& state)
{
- RenderMathMLBlock::styleDidChange(diff, oldStyle);
+ RenderMathMLBlock::styleDidChange(diff, oldStyle, state);
for (RenderObject* child = firstChild(); child; child = child->nextSibling())
fixChildStyle(child);

Powered by Google App Engine
This is Rietveld 408576698