| Index: Source/core/dom/ParentNode.h | 
| diff --git a/Source/core/dom/ParentNode.h b/Source/core/dom/ParentNode.h | 
| index 870724280479c444881e7f6a55a7a4109dc18151..ef837c84a68e84c08be688b0c4fdc6b1e58a7ea5 100644 | 
| --- a/Source/core/dom/ParentNode.h | 
| +++ b/Source/core/dom/ParentNode.h | 
| @@ -33,12 +33,13 @@ | 
|  | 
| #include "core/dom/ContainerNode.h" | 
| #include "core/dom/ElementTraversal.h" | 
| +#include "platform/heap/Handle.h" | 
|  | 
| namespace WebCore { | 
|  | 
| class ParentNode { | 
| public: | 
| -    static PassRefPtr<HTMLCollection> children(ContainerNode& node) | 
| +    static PassRefPtrWillBeRawPtr<HTMLCollection> children(ContainerNode& node) | 
| { | 
| return node.children(); | 
| } | 
| @@ -66,7 +67,7 @@ public: | 
| return node.querySelector(selectors, exceptionState); | 
| } | 
|  | 
| -    static PassRefPtr<NodeList> querySelectorAll(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState) | 
| +    static PassRefPtrWillBeRawPtr<NodeList> querySelectorAll(ContainerNode& node, const AtomicString& selectors, ExceptionState& exceptionState) | 
| { | 
| return node.querySelectorAll(selectors, exceptionState); | 
| } | 
|  |