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

Unified Diff: Source/core/rendering/svg/SVGRootInlineBox.cpp

Issue 257763004: Removed parameter that is always true. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/core/rendering/svg/SVGRootInlineBox.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/SVGRootInlineBox.cpp
diff --git a/Source/core/rendering/svg/SVGRootInlineBox.cpp b/Source/core/rendering/svg/SVGRootInlineBox.cpp
index 9b236b69a6182cc02ce4526ea93b7423590e050a..7f47f00582d5ce6337ceadf96a4c60fa6a5c3314 100644
--- a/Source/core/rendering/svg/SVGRootInlineBox.cpp
+++ b/Source/core/rendering/svg/SVGRootInlineBox.cpp
@@ -58,12 +58,11 @@ void SVGRootInlineBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffse
}
}
-void SVGRootInlineBox::markDirty(bool dirty)
+void SVGRootInlineBox::markDirty()
{
- if (dirty)
- for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
- child->markDirty(true);
- RootInlineBox::markDirty(dirty);
+ for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
+ child->markDirty();
+ RootInlineBox::markDirty();
}
void SVGRootInlineBox::computePerCharacterLayoutInformation()
« no previous file with comments | « Source/core/rendering/svg/SVGRootInlineBox.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698