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

Unified 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 side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698