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

Unified Diff: third_party/WebKit/Source/core/xml/XSLTProcessor.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/core/xml/XSLTProcessor.h
diff --git a/third_party/WebKit/Source/core/xml/XSLTProcessor.h b/third_party/WebKit/Source/core/xml/XSLTProcessor.h
index 093f76d75994d59fe2bef27753fbd7c5ae492793..1ee94ab2944b92f5c7c3e473929ff8ef0915306f 100644
--- a/third_party/WebKit/Source/core/xml/XSLTProcessor.h
+++ b/third_party/WebKit/Source/core/xml/XSLTProcessor.h
@@ -49,17 +49,17 @@ public:
}
~XSLTProcessor();
- void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
+ void setXSLStyleSheet(RawPtr<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*);
+ RawPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, LocalFrame*);
// DOM methods
- void importStylesheet(PassRefPtrWillBeRawPtr<Node> style)
+ void importStylesheet(RawPtr<Node> style)
{
m_stylesheetRootNode = style;
}
- PassRefPtrWillBeRawPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
- PassRefPtrWillBeRawPtr<Document> transformToDocument(Node* source);
+ RawPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
+ RawPtr<Document> transformToDocument(Node* source);
void setParameter(const String& namespaceURI, const String& localName, const String& value);
String getParameter(const String& namespaceURI, const String& localName) const;
@@ -83,9 +83,9 @@ private:
: m_document(&document)
{ }
- RefPtrWillBeMember<XSLStyleSheet> m_stylesheet;
- RefPtrWillBeMember<Node> m_stylesheetRootNode;
- RefPtrWillBeMember<Document> m_document;
+ Member<XSLStyleSheet> m_stylesheet;
+ Member<Node> m_stylesheetRootNode;
+ Member<Document> m_document;
ParameterMap m_parameters;
};
« no previous file with comments | « third_party/WebKit/Source/core/xml/XSLStyleSheet.h ('k') | third_party/WebKit/Source/core/xml/XSLTProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698