| Index: Source/core/editing/StyledMarkupAccumulator.h
|
| diff --git a/Source/core/editing/StyledMarkupAccumulator.h b/Source/core/editing/StyledMarkupAccumulator.h
|
| index 19add0d52eb77c8e9c1d89713c920b7628e79dda..1fd6cfaffc2b56ab470dca588db1d5e799ebed9a 100644
|
| --- a/Source/core/editing/StyledMarkupAccumulator.h
|
| +++ b/Source/core/editing/StyledMarkupAccumulator.h
|
| @@ -64,18 +64,20 @@ public:
|
| void pushMarkup(const String&);
|
| RefPtrWillBeMember<EditingStyle> createInlineStyle(Element&);
|
|
|
| - void appendElement(StringBuilder&, Element&, bool addDisplayInline, PassRefPtrWillBeRawPtr<EditingStyle>);
|
| + void appendElement(StringBuilder&, const Element&);
|
| + void appendElementWithInlineStyle(StringBuilder&, const Element&, PassRefPtrWillBeRawPtr<EditingStyle>);
|
| void appendStartMarkup(StringBuilder&, Node&);
|
|
|
| + bool shouldApplyWrappingStyle(const Node&) const;
|
| +
|
| private:
|
| void appendText(StringBuilder&, Text&);
|
|
|
| String renderedText(Text&);
|
| String stringValueForRange(const Text&);
|
| - bool shouldApplyWrappingStyle(const Node&) const;
|
| bool shouldAnnotate() const;
|
|
|
| - void appendElement(Element&, PassRefPtrWillBeRawPtr<EditingStyle>);
|
| + void appendElement(const Element&, PassRefPtrWillBeRawPtr<EditingStyle>);
|
| void appendEndMarkup(StringBuilder&, const Element&);
|
|
|
| MarkupFormatter m_formatter;
|
|
|