| 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 22 matching lines...) Expand all Loading... |
| 33 #include <libxml/parserInternals.h> | 33 #include <libxml/parserInternals.h> |
| 34 #include <libxslt/documents.h> | 34 #include <libxslt/documents.h> |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class LocalFrame; | 38 class LocalFrame; |
| 39 class Document; | 39 class Document; |
| 40 class DocumentFragment; | 40 class DocumentFragment; |
| 41 | 41 |
| 42 class XSLTProcessor : public RefCountedWillBeGarbageCollectedFinalized<XSLTProce
ssor>, public ScriptWrappable { | 42 class XSLTProcessor : public RefCountedWillBeGarbageCollectedFinalized<XSLTProce
ssor>, public ScriptWrappable { |
| 43 DEFINE_WRAPPERTYPEINFO(); |
| 43 public: | 44 public: |
| 44 static PassRefPtrWillBeRawPtr<XSLTProcessor> create() | 45 static PassRefPtrWillBeRawPtr<XSLTProcessor> create() |
| 45 { | 46 { |
| 46 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); | 47 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); |
| 47 return adoptRefWillBeNoop(new XSLTProcessor); | 48 return adoptRefWillBeNoop(new XSLTProcessor); |
| 48 } | 49 } |
| 49 ~XSLTProcessor(); | 50 ~XSLTProcessor(); |
| 50 | 51 |
| 51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_
stylesheet = styleSheet; } | 52 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_
stylesheet = styleSheet; } |
| 52 bool transformToString(Node* source, String& resultMIMEType, String& resultS
tring, String& resultEncoding); | 53 bool transformToString(Node* source, String& resultMIMEType, String& resultS
tring, String& resultEncoding); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 82 XSLTProcessor() | 83 XSLTProcessor() |
| 83 { | 84 { |
| 84 ScriptWrappable::init(this); | 85 ScriptWrappable::init(this); |
| 85 } | 86 } |
| 86 | 87 |
| 87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; | 88 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; |
| 88 RefPtrWillBeMember<Node> m_stylesheetRootNode; | 89 RefPtrWillBeMember<Node> m_stylesheetRootNode; |
| 89 ParameterMap m_parameters; | 90 ParameterMap m_parameters; |
| 90 }; | 91 }; |
| 91 | 92 |
| 92 } | 93 } // namespace blink |
| 93 | 94 |
| 94 #endif | 95 #endif // XSLTProcessor_h |
| OLD | NEW |