Index: Source/core/frame/LocalDOMWindow.cpp |
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp |
index be335f8d485b6f5a66277ef79b91653f82abb2ab..11e9feba86c8bfdd7d0e7b51731682993e8ceecb 100644 |
--- a/Source/core/frame/LocalDOMWindow.cpp |
+++ b/Source/core/frame/LocalDOMWindow.cpp |
@@ -609,7 +609,7 @@ void LocalDOMWindow::sendOrientationChangeEvent() |
// Before dispatching the event, build a list of the child frames to |
// also send the event to, to mitigate side effects from event handlers |
// potentially interfering with others. |
- WillBeHeapVector<RefPtr<Frame> > childFrames; |
+ WillBeHeapVector<RefPtrWillBeMember<Frame> > childFrames; |
for (Frame* child = m_frame->tree().firstChild(); child; child = child->tree().nextSibling()) { |
childFrames.append(child); |
} |