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

Side by Side Diff: Source/core/xml/XSLTProcessor.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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
« no previous file with comments | « Source/core/xml/XPathExpression.cpp ('k') | Source/core/xml/XSLTProcessorLibxslt.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 * This file is part of the XSL implementation. 2 * This file is part of the XSL implementation.
3 * 3 *
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved.
5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> 5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org>
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 data.setEncoding(sourceEncoding.isEmpty() ? UTF8Encoding() : WTF::TextEncodi ng(sourceEncoding)); 97 data.setEncoding(sourceEncoding.isEmpty() ? UTF8Encoding() : WTF::TextEncodi ng(sourceEncoding));
98 result->setEncodingData(data); 98 result->setEncodingData(data);
99 result->setContent(documentSource); 99 result->setContent(documentSource);
100 100
101 return result.release(); 101 return result.release();
102 } 102 }
103 103
104 PassRefPtr<Document> XSLTProcessor::transformToDocument(Node* sourceNode) 104 PassRefPtr<Document> XSLTProcessor::transformToDocument(Node* sourceNode)
105 { 105 {
106 if (!sourceNode) 106 if (!sourceNode)
107 return 0; 107 return nullptr;
108 108
109 String resultMIMEType; 109 String resultMIMEType;
110 String resultString; 110 String resultString;
111 String resultEncoding; 111 String resultEncoding;
112 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncod ing)) 112 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncod ing))
113 return 0; 113 return nullptr;
114 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType , sourceNode, 0); 114 return createDocumentFromSource(resultString, resultEncoding, resultMIMEType , sourceNode, 0);
115 } 115 }
116 116
117 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode , Document* outputDoc) 117 PassRefPtr<DocumentFragment> XSLTProcessor::transformToFragment(Node* sourceNode , Document* outputDoc)
118 { 118 {
119 if (!sourceNode || !outputDoc) 119 if (!sourceNode || !outputDoc)
120 return 0; 120 return nullptr;
121 121
122 String resultMIMEType; 122 String resultMIMEType;
123 String resultString; 123 String resultString;
124 String resultEncoding; 124 String resultEncoding;
125 125
126 // If the output document is HTML, default to HTML method. 126 // If the output document is HTML, default to HTML method.
127 if (outputDoc->isHTMLDocument()) 127 if (outputDoc->isHTMLDocument())
128 resultMIMEType = "text/html"; 128 resultMIMEType = "text/html";
129 129
130 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncod ing)) 130 if (!transformToString(sourceNode, resultMIMEType, resultString, resultEncod ing))
131 return 0; 131 return nullptr;
132 return createFragmentForTransformToFragment(resultString, resultMIMEType, *o utputDoc); 132 return createFragmentForTransformToFragment(resultString, resultMIMEType, *o utputDoc);
133 } 133 }
134 134
135 void XSLTProcessor::setParameter(const String& /*namespaceURI*/, const String& l ocalName, const String& value) 135 void XSLTProcessor::setParameter(const String& /*namespaceURI*/, const String& l ocalName, const String& value)
136 { 136 {
137 // FIXME: namespace support? 137 // FIXME: namespace support?
138 // should make a QualifiedName here but we'd have to expose the impl 138 // should make a QualifiedName here but we'd have to expose the impl
139 m_parameters.set(localName, value); 139 m_parameters.set(localName, value);
140 } 140 }
141 141
(...skipping 11 matching lines...) Expand all
153 } 153 }
154 154
155 void XSLTProcessor::reset() 155 void XSLTProcessor::reset()
156 { 156 {
157 m_stylesheet.clear(); 157 m_stylesheet.clear();
158 m_stylesheetRootNode.clear(); 158 m_stylesheetRootNode.clear();
159 m_parameters.clear(); 159 m_parameters.clear();
160 } 160 }
161 161
162 } // namespace WebCore 162 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/xml/XPathExpression.cpp ('k') | Source/core/xml/XSLTProcessorLibxslt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698