| Index: third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp b/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp
|
| index 46a280adb2f6b54b6c6d2b06b6c86c82bbe8256d..6b89e354686ce1d6891ef7c5d0be280f57b08785 100644
|
| --- a/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ChildFrameDisconnector.cpp
|
| @@ -38,7 +38,7 @@ void ChildFrameDisconnector::collectFrameOwners(Node& root) {
|
| return;
|
|
|
| if (root.isHTMLElement() && root.isFrameOwnerElement())
|
| - m_frameOwners.append(&toHTMLFrameOwnerElement(root));
|
| + m_frameOwners.push_back(&toHTMLFrameOwnerElement(root));
|
|
|
| for (Node* child = root.firstChild(); child; child = child->nextSibling())
|
| collectFrameOwners(*child);
|
|
|