Chromium Code Reviews| Index: Source/core/xml/XSLTProcessor.h |
| diff --git a/Source/core/xml/XSLTProcessor.h b/Source/core/xml/XSLTProcessor.h |
| index 1a9b32c1e883f2ffa0ff867b8b9080d40ca719bd..9fff8abd591420749e4adc6c57ec7c08d167220b 100644 |
| --- a/Source/core/xml/XSLTProcessor.h |
| +++ b/Source/core/xml/XSLTProcessor.h |
| @@ -49,9 +49,7 @@ public: |
| } |
| ~XSLTProcessor(); |
| - void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } |
| bool transformToString(Node* source, String& resultMIMEType, String& resultString, String& resultEncoding); |
| - PassRefPtrWillBeRawPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame*); |
| // DOM methods |
| void importStylesheet(PassRefPtrWillBeRawPtr<Node> style) |
| @@ -84,6 +82,9 @@ private: |
| : m_document(&document) |
| { } |
| + void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } |
|
tasak
2014/11/07 13:34:55
If it is not possible to deprecate external DTD, j
|
| + PassRefPtrWillBeRawPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame*); |
| + |
| RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; |
| RefPtrWillBeMember<Node> m_stylesheetRootNode; |
| RefPtrWillBeMember<Document> m_document; |