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

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

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test wrapper class finalized Created 6 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 unified diff | Download patch
« no previous file with comments | « Source/core/editing/InsertTextCommand.cpp ('k') | 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 EntityMaskInHTMLAttributeValue = EntityAmp | EntityQuot | EntityNbsp, 57 EntityMaskInHTMLAttributeValue = EntityAmp | EntityQuot | EntityNbsp,
58 }; 58 };
59 59
60 enum SerializationType { 60 enum SerializationType {
61 AsOwnerDocument, 61 AsOwnerDocument,
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 67 STACK_ALLOCATED();
68 public: 68 public:
69 MarkupAccumulator(Vector<Node*>*, EAbsoluteURLs, const Range* = 0, Serializa tionType = AsOwnerDocument); 69 MarkupAccumulator(WillBeHeapVector<RawPtrWillBeMember<Node> >*, EAbsoluteURL s, const Range* = 0, SerializationType = AsOwnerDocument);
70 virtual ~MarkupAccumulator(); 70 virtual ~MarkupAccumulator();
71 71
72 String serializeNodes(Node& targetNode, EChildrenOnly, Vector<QualifiedName> * tagNamesToSkip = 0); 72 String serializeNodes(Node& targetNode, EChildrenOnly, Vector<QualifiedName> * tagNamesToSkip = 0);
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&);
(...skipping 16 matching lines...) Expand all
96 virtual void appendElement(StringBuilder&, Element&, Namespaces*); 96 virtual void appendElement(StringBuilder&, Element&, Namespaces*);
97 void appendOpenTag(StringBuilder&, const Element&, Namespaces*); 97 void appendOpenTag(StringBuilder&, const Element&, Namespaces*);
98 void appendCloseTag(StringBuilder&, const Element&); 98 void appendCloseTag(StringBuilder&, const Element&);
99 void appendAttribute(StringBuilder&, const Element&, const Attribute&, Names paces*); 99 void appendAttribute(StringBuilder&, const Element&, const Attribute&, Names paces*);
100 void appendCDATASection(StringBuilder&, const String&); 100 void appendCDATASection(StringBuilder&, const String&);
101 void appendStartMarkup(StringBuilder&, Node&, Namespaces*); 101 void appendStartMarkup(StringBuilder&, Node&, Namespaces*);
102 bool shouldSelfClose(const Node&); 102 bool shouldSelfClose(const Node&);
103 bool elementCannotHaveEndTag(const Node&); 103 bool elementCannotHaveEndTag(const Node&);
104 void appendEndMarkup(StringBuilder&, const Node&); 104 void appendEndMarkup(StringBuilder&, const Node&);
105 105
106 Vector<Node*>* const m_nodes; 106 RawPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Node> > > const m_nod es;
107 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*, Vector<QualifiedName>* tagNamesToSkip);
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 | « Source/core/editing/InsertTextCommand.cpp ('k') | Source/core/editing/MarkupAccumulator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698