| Index: Source/core/dom/ContainerNode.h
|
| diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h
|
| index 0cfb5e5722a5519aa9424a01db6a899b96d3a57c..137150a752a73ea0c14ab4b5c221235137aeba88 100644
|
| --- a/Source/core/dom/ContainerNode.h
|
| +++ b/Source/core/dom/ContainerNode.h
|
| @@ -36,7 +36,8 @@ class ClassCollection;
|
| class ExceptionState;
|
| class FloatPoint;
|
| class HTMLCollection;
|
| -class StaticNodeList;
|
| +template <typename NodeType> class StaticNodeTypeList;
|
| +typedef StaticNodeTypeList<Element> StaticElementList;
|
| class TagCollection;
|
|
|
| enum DynamicRestyleFlags {
|
| @@ -77,7 +78,7 @@ public:
|
| unsigned countChildren() const;
|
|
|
| PassRefPtrWillBeRawPtr<Element> querySelector(const AtomicString& selectors, ExceptionState&);
|
| - PassRefPtrWillBeRawPtr<StaticNodeList> querySelectorAll(const AtomicString& selectors, ExceptionState&);
|
| + PassRefPtrWillBeRawPtr<StaticElementList> querySelectorAll(const AtomicString& selectors, ExceptionState&);
|
|
|
| PassRefPtrWillBeRawPtr<Node> insertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| PassRefPtrWillBeRawPtr<Node> replaceChild(PassRefPtrWillBeRawPtr<Node> newChild, PassRefPtrWillBeRawPtr<Node> oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|