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

Unified Diff: Source/core/editing/StyledMarkupAccumulator.h

Issue 1164253002: Refactoring: Remove boolean paramters from StyledMarkupAccumulator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tkent's review Created 5 years, 6 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 | « no previous file | Source/core/editing/StyledMarkupAccumulator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/StyledMarkupAccumulator.h
diff --git a/Source/core/editing/StyledMarkupAccumulator.h b/Source/core/editing/StyledMarkupAccumulator.h
index e9e46a2c14bca5787988de87196b6e852ed76a72..a4a87bece3f4025ad999d354ee5c62722eee9fc5 100644
--- a/Source/core/editing/StyledMarkupAccumulator.h
+++ b/Source/core/editing/StyledMarkupAccumulator.h
@@ -61,7 +61,7 @@ public:
void setWrappingStyle(PassRefPtrWillBeRawPtr<EditingStyle> wrappingStyle) { m_wrappingStyle = wrappingStyle; }
void wrapWithNode(ContainerNode&, RangeFullySelectsNode = DoesFullySelectNode);
- void wrapWithStyleNode(StylePropertySet*, bool isBlock = false);
+ void wrapWithStyleNode(StylePropertySet*);
String takeResults();
private:
@@ -78,7 +78,6 @@ private:
void appendElement(StringBuilder&, Element&, bool, RangeFullySelectsNode);
void appendStartMarkup(StringBuilder&, Node&);
void appendEndMarkup(StringBuilder&, const Element&);
- void appendStyleNodeOpenTag(StringBuilder&, StylePropertySet*, bool isBlock = false);
MarkupFormatter m_formatter;
const TextOffset m_start;
« no previous file with comments | « no previous file | Source/core/editing/StyledMarkupAccumulator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698