| Index: Source/core/dom/ContainerNode.h
|
| diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h
|
| index b7bd10c9420b3a22881f056b7b92f4023f546475..ce5bea29e7f6d4f0c5a044f222d33842bec8a461 100644
|
| --- a/Source/core/dom/ContainerNode.h
|
| +++ b/Source/core/dom/ContainerNode.h
|
| @@ -355,7 +355,7 @@ inline ContainerNode* Node::parentElementOrDocumentFragment() const
|
| // for a Node Vector that is used to store child Nodes of a given Node.
|
| // FIXME: Optimize the value.
|
| const int initialNodeVectorSize = 11;
|
| -typedef Vector<RefPtr<Node>, initialNodeVectorSize> NodeVector;
|
| +typedef WillBeHeapVector<RefPtrWillBeMember<Node>, initialNodeVectorSize> NodeVector;
|
|
|
| inline void getChildNodes(Node& node, NodeVector& nodes)
|
| {
|
|
|