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

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

Issue 184633007: Don't emit a default namespace declaration if it's already the default (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 protected: 73 protected:
74 void appendString(const String&); 74 void appendString(const String&);
75 void appendStartTag(Node&, Namespaces* = 0); 75 void appendStartTag(Node&, Namespaces* = 0);
76 virtual void appendEndTag(const Node&); 76 virtual void appendEndTag(const Node&);
77 static size_t totalLength(const Vector<String>&); 77 static size_t totalLength(const Vector<String>&);
78 size_t length() const { return m_markup.length(); } 78 size_t length() const { return m_markup.length(); }
79 void concatenateMarkup(StringBuilder&); 79 void concatenateMarkup(StringBuilder&);
80 void appendAttributeValue(StringBuilder&, const String&, bool); 80 void appendAttributeValue(StringBuilder&, const String&, bool);
81 virtual void appendCustomAttributes(StringBuilder&, const Element&, Namespac es*); 81 virtual void appendCustomAttributes(StringBuilder&, const Element&, Namespac es*);
82 bool shouldAddNamespaceElement(const Element&); 82 bool shouldAddNamespaceElement(const Element&, Namespaces&);
83 bool shouldAddNamespaceAttribute(const Attribute&, Namespaces&); 83 bool shouldAddNamespaceAttribute(const Attribute&, Namespaces&);
84 void appendNamespace(StringBuilder&, const AtomicString& prefix, const Atomi cString& namespaceURI, Namespaces&); 84 void appendNamespace(StringBuilder&, const AtomicString& prefix, const Atomi cString& namespaceURI, Namespaces&);
85 EntityMask entityMaskForText(const Text&) const; 85 EntityMask entityMaskForText(const Text&) const;
86 virtual void appendText(StringBuilder&, Text&); 86 virtual void appendText(StringBuilder&, Text&);
87 void appendXMLDeclaration(StringBuilder&, const Document&); 87 void appendXMLDeclaration(StringBuilder&, const Document&);
88 void appendDocumentType(StringBuilder&, const DocumentType&); 88 void appendDocumentType(StringBuilder&, const DocumentType&);
89 void appendProcessingInstruction(StringBuilder&, const String& target, const String& data); 89 void appendProcessingInstruction(StringBuilder&, const String& target, const String& data);
90 virtual void appendElement(StringBuilder&, Element&, Namespaces*); 90 virtual void appendElement(StringBuilder&, Element&, Namespaces*);
91 void appendOpenTag(StringBuilder&, const Element&, Namespaces*); 91 void appendOpenTag(StringBuilder&, const Element&, Namespaces*);
92 void appendCloseTag(StringBuilder&, const Element&); 92 void appendCloseTag(StringBuilder&, const Element&);
(...skipping 12 matching lines...) Expand all
105 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att ribute&); 105 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att ribute&);
106 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam espaces*, Vector<QualifiedName>* tagNamesToSkip); 106 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam espaces*, Vector<QualifiedName>* tagNamesToSkip);
107 107
108 StringBuilder m_markup; 108 StringBuilder m_markup;
109 const EAbsoluteURLs m_resolveURLsMethod; 109 const EAbsoluteURLs m_resolveURLsMethod;
110 }; 110 };
111 111
112 } 112 }
113 113
114 #endif 114 #endif
OLDNEW
« no previous file with comments | « LayoutTests/inspector/elements/set-outer-html-for-xhtml-expected.txt ('k') | Source/core/editing/MarkupAccumulator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698