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

Side by Side Diff: Source/core/editing/MarkupAccumulator.h

Issue 750353008: Remove the tagNamesToSkip argument on MarkupAccumulator::serializeNodes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/editing/MarkupAccumulator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 ForcedXML 62 ForcedXML
63 }; 63 };
64 64
65 class MarkupAccumulator { 65 class MarkupAccumulator {
66 WTF_MAKE_NONCOPYABLE(MarkupAccumulator); 66 WTF_MAKE_NONCOPYABLE(MarkupAccumulator);
67 STACK_ALLOCATED(); 67 STACK_ALLOCATED();
68 public: 68 public:
69 MarkupAccumulator(WillBeHeapVector<RawPtrWillBeMember<Node>>*, EAbsoluteURLs , const Range* = nullptr, SerializationType = AsOwnerDocument); 69 MarkupAccumulator(WillBeHeapVector<RawPtrWillBeMember<Node>>*, EAbsoluteURLs , const Range* = nullptr, SerializationType = AsOwnerDocument);
70 virtual ~MarkupAccumulator(); 70 virtual ~MarkupAccumulator();
71 71
72 String serializeNodes(Node& targetNode, EChildrenOnly, Vector<QualifiedName> * tagNamesToSkip = nullptr); 72 String serializeNodes(Node& targetNode, EChildrenOnly);
73 73
74 static void appendComment(StringBuilder&, const String&); 74 static void appendComment(StringBuilder&, const String&);
75 75
76 static void appendCharactersReplacingEntities(StringBuilder&, const String&, unsigned, unsigned, EntityMask); 76 static void appendCharactersReplacingEntities(StringBuilder&, const String&, unsigned, unsigned, EntityMask);
77 77
78 protected: 78 protected:
79 void appendString(const String&); 79 void appendString(const String&);
80 void appendStartTag(Node&, Namespaces* = nullptr); 80 void appendStartTag(Node&, Namespaces* = nullptr);
81 virtual void appendEndTag(const Element&); 81 virtual void appendEndTag(const Element&);
82 static size_t totalLength(const Vector<String>&); 82 static size_t totalLength(const Vector<String>&);
(...skipping 19 matching lines...) Expand all
102 bool shouldSelfClose(const Element&); 102 bool shouldSelfClose(const Element&);
103 bool elementCannotHaveEndTag(const Node&); 103 bool elementCannotHaveEndTag(const Node&);
104 void appendEndMarkup(StringBuilder&, const Element&); 104 void appendEndMarkup(StringBuilder&, const Element&);
105 105
106 RawPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Node>>> const m_nodes ; 106 RawPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Node>>> const m_nodes ;
107 RawPtrWillBeMember<const Range> const m_range; 107 RawPtrWillBeMember<const Range> const m_range;
108 108
109 private: 109 private:
110 String resolveURLIfNeeded(const Element&, const String&) const; 110 String resolveURLIfNeeded(const Element&, const String&) const;
111 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att ribute&); 111 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att ribute&);
112 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam espaces*, Vector<QualifiedName>* tagNamesToSkip); 112 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam espaces*);
113 bool serializeAsHTMLDocument(const Node&) const; 113 bool serializeAsHTMLDocument(const Node&) const;
114 114
115 StringBuilder m_markup; 115 StringBuilder m_markup;
116 const EAbsoluteURLs m_resolveURLsMethod; 116 const EAbsoluteURLs m_resolveURLsMethod;
117 SerializationType m_serializationType; 117 SerializationType m_serializationType;
118 }; 118 };
119 119
120 } 120 }
121 121
122 #endif 122 #endif
OLDNEW
« 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