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

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

Issue 1162113004: Refactoring: Change some functions in MarkupFormatter static (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/MarkupAccumulator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | Source/core/editing/MarkupAccumulator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698