| Index: sky/engine/core/dom/ContainerNode.h
|
| diff --git a/sky/engine/core/dom/ContainerNode.h b/sky/engine/core/dom/ContainerNode.h
|
| index bc9108d363699bf723c811c6a172e21449a29595..c37643cdd210ab3a313900b73514d6a7c44be613 100644
|
| --- a/sky/engine/core/dom/ContainerNode.h
|
| +++ b/sky/engine/core/dom/ContainerNode.h
|
| @@ -34,7 +34,6 @@ namespace blink {
|
| class ExceptionState;
|
| class FloatPoint;
|
| template <typename NodeType> class StaticNodeTypeList;
|
| -typedef StaticNodeTypeList<Element> StaticElementList;
|
|
|
| // This constant controls how much buffer is initially allocated
|
| // for a Node Vector that is used to store child Nodes of a given Node.
|
| @@ -72,7 +71,7 @@ public:
|
| unsigned countChildren() const;
|
|
|
| PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionState&);
|
| - PassRefPtr<StaticElementList> querySelectorAll(const AtomicString& selectors, ExceptionState&);
|
| + Vector<RefPtr<Element>> querySelectorAll(const AtomicString& selectors, ExceptionState&);
|
|
|
| PassRefPtr<Node> insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| PassRefPtr<Node> replaceChild(PassRefPtr<Node> newChild, PassRefPtr<Node> oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|