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

Unified Diff: Source/core/editing/StyledMarkupSerializer.cpp

Issue 1153363005: Refactoring: Remove unused parameters from StyledMarkupAccumulator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/editing/StyledMarkupAccumulator.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/StyledMarkupSerializer.cpp
diff --git a/Source/core/editing/StyledMarkupSerializer.cpp b/Source/core/editing/StyledMarkupSerializer.cpp
index 79b958b7b3271f10bf5d2267eae84bfd7f04a10e..d0c5563db9edff3ae93c98bc64df2d4d92c39714 100644
--- a/Source/core/editing/StyledMarkupSerializer.cpp
+++ b/Source/core/editing/StyledMarkupSerializer.cpp
@@ -203,7 +203,7 @@ void StyledMarkupSerializer<Strategy>::wrapWithNode(ContainerNode& node, typenam
if (node.isElementNode())
m_markupAccumulator.appendElement(markup, toElement(node), convertBlocksToInlines() && isBlock(&node), rangeFullySelectsNode);
else
- m_markupAccumulator.appendStartMarkup(markup, node, 0);
+ m_markupAccumulator.appendStartMarkup(markup, node);
m_reversedPrecedingMarkup.append(markup.toString());
if (node.isElementNode())
m_markupAccumulator.appendEndTag(toElement(node));
« no previous file with comments | « Source/core/editing/StyledMarkupAccumulator.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698