Chromium Code Reviews| Index: Source/core/xml/XSLTProcessor.h |
| diff --git a/Source/core/xml/XSLTProcessor.h b/Source/core/xml/XSLTProcessor.h |
| index 76c2734af23f7b0325724cd9329fd353845f3d2c..c3c85c9c6b3be2ae65809c0b0a55ff0e0df864d3 100644 |
| --- a/Source/core/xml/XSLTProcessor.h |
| +++ b/Source/core/xml/XSLTProcessor.h |
| @@ -50,7 +50,7 @@ public: |
| void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } |
| bool transformToString(Node* source, String& resultMIMEType, String& resultString, String& resultEncoding); |
| - PassRefPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame* frame); |
| + PassRefPtrWillBeRawPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame*); |
| // DOM methods |
| void importStylesheet(PassRefPtr<Node> style) |
|
sof
2014/05/23 06:11:20
PassRefPtrWillBeRawPtr<> here also?
tkent
2014/05/23 06:21:47
Done.
|
| @@ -59,7 +59,7 @@ public: |
| m_stylesheetRootNode = style; |
| } |
| PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc); |
| - PassRefPtr<Document> transformToDocument(Node* source); |
| + PassRefPtrWillBeRawPtr<Document> transformToDocument(Node* source); |
| void setParameter(const String& namespaceURI, const String& localName, const String& value); |
| String getParameter(const String& namespaceURI, const String& localName) const; |
| @@ -85,7 +85,7 @@ private: |
| } |
| RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; |
| - RefPtr<Node> m_stylesheetRootNode; |
| + RefPtrWillBeMember<Node> m_stylesheetRootNode; |
| ParameterMap m_parameters; |
| }; |