| Index: Source/core/editing/MarkupAccumulator.h
|
| diff --git a/Source/core/editing/MarkupAccumulator.h b/Source/core/editing/MarkupAccumulator.h
|
| index 7767522b986256d96ba808ee96af4e560ca2c53e..68e16f6849a6316cd2841e2ba4b145e119e14920 100644
|
| --- a/Source/core/editing/MarkupAccumulator.h
|
| +++ b/Source/core/editing/MarkupAccumulator.h
|
| @@ -59,25 +59,16 @@ public:
|
| bool serializeAsHTMLDocument(const Node&) const;
|
| String toString() { return m_markup.toString(); }
|
|
|
| - void appendAttributeValue(StringBuilder&, const String&, bool);
|
| virtual void appendCustomAttributes(StringBuilder&, const Element&, Namespaces*);
|
|
|
| - void appendNamespace(StringBuilder&, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces&);
|
| virtual void appendText(StringBuilder&, Text&);
|
| - void appendXMLDeclaration(StringBuilder&, const Document&);
|
| - void appendDocumentType(StringBuilder&, const DocumentType&);
|
| - void appendProcessingInstruction(StringBuilder&, const String& target, const String& data);
|
| virtual bool shouldIgnoreAttribute(const Attribute&);
|
| virtual void appendElement(StringBuilder&, Element&, Namespaces*);
|
| void appendOpenTag(StringBuilder&, const Element&, Namespaces*);
|
| void appendCloseTag(StringBuilder&, const Element&);
|
| void appendAttribute(StringBuilder&, const Element&, const Attribute&, Namespaces*);
|
| - void appendCDATASection(StringBuilder&, const String&);
|
|
|
| - bool shouldAddNamespaceElement(const Element&, Namespaces&) const;
|
| - bool shouldAddNamespaceAttribute(const Attribute&, const Element&) const;
|
| EntityMask entityMaskForText(const Text&) const;
|
| - bool shouldSelfClose(const Element&) const;
|
|
|
| private:
|
| MarkupFormatter m_formatter;
|
|
|