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

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

Issue 288343017: Oilpan: Replace RefPtrs to Node and its subclasses in core/xml/ with Oilpan transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
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, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 public: 43 public:
44 static PassRefPtrWillBeRawPtr<XSLTProcessor> create() 44 static PassRefPtrWillBeRawPtr<XSLTProcessor> create()
45 { 45 {
46 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 46 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
47 return adoptRefWillBeNoop(new XSLTProcessor); 47 return adoptRefWillBeNoop(new XSLTProcessor);
48 } 48 }
49 ~XSLTProcessor(); 49 ~XSLTProcessor();
50 50
51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_ stylesheet = styleSheet; } 51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_ stylesheet = styleSheet; }
52 bool transformToString(Node* source, String& resultMIMEType, String& resultS tring, String& resultEncoding); 52 bool transformToString(Node* source, String& resultMIMEType, String& resultS tring, String& resultEncoding);
53 PassRefPtr<Document> createDocumentFromSource(const String& source, const St ring& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame * frame); 53 PassRefPtrWillBeRawPtr<Document> createDocumentFromSource(const String& sour ce, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode , LocalFrame*);
54 54
55 // DOM methods 55 // DOM methods
56 void importStylesheet(PassRefPtr<Node> style) 56 void importStylesheet(PassRefPtr<Node> style)
sof 2014/05/23 06:11:20 PassRefPtrWillBeRawPtr<> here also?
tkent 2014/05/23 06:21:47 Done.
57 { 57 {
58 if (style) 58 if (style)
59 m_stylesheetRootNode = style; 59 m_stylesheetRootNode = style;
60 } 60 }
61 PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, D ocument* ouputDoc); 61 PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, D ocument* ouputDoc);
62 PassRefPtr<Document> transformToDocument(Node* source); 62 PassRefPtrWillBeRawPtr<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 void trace(Visitor*); 79 void trace(Visitor*);
80 80
81 private: 81 private:
82 XSLTProcessor() 82 XSLTProcessor()
83 { 83 {
84 ScriptWrappable::init(this); 84 ScriptWrappable::init(this);
85 } 85 }
86 86
87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; 87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet;
88 RefPtr<Node> m_stylesheetRootNode; 88 RefPtrWillBeMember<Node> m_stylesheetRootNode;
89 ParameterMap m_parameters; 89 ParameterMap m_parameters;
90 }; 90 };
91 91
92 } 92 }
93 93
94 #endif 94 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698