| OLD | NEW |
| 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, 2007, 2008 Apple, Inc. All rights reserved. | 4 * Copyright (C) 2004, 2007, 2008 Apple, Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class XSLTProcessor final : public GarbageCollectedFinalized<XSLTProcessor>, pub
lic ScriptWrappable { | 42 class XSLTProcessor final : public GarbageCollectedFinalized<XSLTProcessor>, pub
lic ScriptWrappable { |
| 43 DEFINE_WRAPPERTYPEINFO(); | 43 DEFINE_WRAPPERTYPEINFO(); |
| 44 public: | 44 public: |
| 45 static XSLTProcessor* create(Document& document) | 45 static XSLTProcessor* create(Document& document) |
| 46 { | 46 { |
| 47 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); | 47 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); |
| 48 return new XSLTProcessor(document); | 48 return new XSLTProcessor(document); |
| 49 } | 49 } |
| 50 ~XSLTProcessor(); | 50 ~XSLTProcessor(); |
| 51 | 51 |
| 52 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_
stylesheet = styleSheet; } | 52 void setXSLStyleSheet(RawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = sty
leSheet; } |
| 53 bool transformToString(Node* source, String& resultMIMEType, String& resultS
tring, String& resultEncoding); | 53 bool transformToString(Node* source, String& resultMIMEType, String& resultS
tring, String& resultEncoding); |
| 54 PassRefPtrWillBeRawPtr<Document> createDocumentFromSource(const String& sour
ce, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode
, LocalFrame*); | 54 RawPtr<Document> createDocumentFromSource(const String& source, const String
& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame*); |
| 55 | 55 |
| 56 // DOM methods | 56 // DOM methods |
| 57 void importStylesheet(PassRefPtrWillBeRawPtr<Node> style) | 57 void importStylesheet(RawPtr<Node> style) |
| 58 { | 58 { |
| 59 m_stylesheetRootNode = style; | 59 m_stylesheetRootNode = style; |
| 60 } | 60 } |
| 61 PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, D
ocument* ouputDoc); | 61 RawPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDo
c); |
| 62 PassRefPtrWillBeRawPtr<Document> transformToDocument(Node* source); | 62 RawPtr<Document> transformToDocument(Node* source); |
| 63 | 63 |
| 64 void setParameter(const String& namespaceURI, const String& localName, const
String& value); | 64 void setParameter(const String& namespaceURI, const String& localName, const
String& value); |
| 65 String getParameter(const String& namespaceURI, const String& localName) con
st; | 65 String getParameter(const String& namespaceURI, const String& localName) con
st; |
| 66 void removeParameter(const String& namespaceURI, const String& localName); | 66 void removeParameter(const String& namespaceURI, const String& localName); |
| 67 void clearParameters() { m_parameters.clear(); } | 67 void clearParameters() { m_parameters.clear(); } |
| 68 | 68 |
| 69 void reset(); | 69 void reset(); |
| 70 | 70 |
| 71 static void parseErrorFunc(void* userData, xmlError*); | 71 static void parseErrorFunc(void* userData, xmlError*); |
| 72 static void genericErrorFunc(void* userData, const char* msg, ...); | 72 static void genericErrorFunc(void* userData, const char* msg, ...); |
| 73 | 73 |
| 74 // Only for libXSLT callbacks | 74 // Only for libXSLT callbacks |
| 75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } | 75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } |
| 76 | 76 |
| 77 typedef HashMap<String, String> ParameterMap; | 77 typedef HashMap<String, String> ParameterMap; |
| 78 | 78 |
| 79 DECLARE_TRACE(); | 79 DECLARE_TRACE(); |
| 80 | 80 |
| 81 private: | 81 private: |
| 82 XSLTProcessor(Document& document) | 82 XSLTProcessor(Document& document) |
| 83 : m_document(&document) | 83 : m_document(&document) |
| 84 { } | 84 { } |
| 85 | 85 |
| 86 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; | 86 Member<XSLStyleSheet> m_stylesheet; |
| 87 RefPtrWillBeMember<Node> m_stylesheetRootNode; | 87 Member<Node> m_stylesheetRootNode; |
| 88 RefPtrWillBeMember<Document> m_document; | 88 Member<Document> m_document; |
| 89 ParameterMap m_parameters; | 89 ParameterMap m_parameters; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif // XSLTProcessor_h | 94 #endif // XSLTProcessor_h |
| OLD | NEW |