| Index: third_party/WebKit/Source/core/xml/DOMParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/DOMParser.cpp b/third_party/WebKit/Source/core/xml/DOMParser.cpp
|
| index 886493989e43cbf27d13467fbda9104589aab40b..b7979640d20967bfc16635cc7fcc60aab70e9383 100644
|
| --- a/third_party/WebKit/Source/core/xml/DOMParser.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/DOMParser.cpp
|
| @@ -24,9 +24,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<Document> DOMParser::parseFromString(const String& str, const String& type)
|
| +RawPtr<Document> DOMParser::parseFromString(const String& str, const String& type)
|
| {
|
| - RefPtrWillBeRawPtr<Document> doc = DOMImplementation::createDocument(type, DocumentInit(KURL(), nullptr, m_contextDocument), false);
|
| + RawPtr<Document> doc = DOMImplementation::createDocument(type, DocumentInit(KURL(), nullptr, m_contextDocument), false);
|
| doc->setContent(str);
|
| return doc.release();
|
| }
|
|
|