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

Unified Diff: Source/WebCore/rendering/mathml/RenderMathMLOperator.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/RenderMathMLOperator.cpp
diff --git a/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp b/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp
index 0db64555f8391bf0bfb068ede9e40f1e2546d05a..51068902cb858714822554895427048313841290 100644
--- a/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp
+++ b/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp
@@ -72,9 +72,9 @@ void RenderMathMLOperator::stretchToHeight(int height)
updateFromElement();
}
-void RenderMathMLOperator::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
+void RenderMathMLOperator::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle, const StyleChangeState& state)
{
- RenderMathMLBlock::styleDidChange(diff, oldStyle);
+ RenderMathMLBlock::styleDidChange(diff, oldStyle, state);
if (firstChild())
updateFromElement();

Powered by Google App Engine
This is Rietveld 408576698