Index: third_party/WebKit/Source/core/frame/Frame.cpp |
diff --git a/third_party/WebKit/Source/core/frame/Frame.cpp b/third_party/WebKit/Source/core/frame/Frame.cpp |
index aa43af8920dd860567a06066a27010ebee279902..dcc8df734eb6693a9f4d2bcd51aa64eb649b7175 100644 |
--- a/third_party/WebKit/Source/core/frame/Frame.cpp |
+++ b/third_party/WebKit/Source/core/frame/Frame.cpp |
@@ -330,7 +330,7 @@ void Frame::didChangeVisibilityState() { |
HeapVector<Member<Frame>> childFrames; |
for (Frame* child = tree().firstChild(); child; |
child = child->tree().nextSibling()) |
- childFrames.append(child); |
+ childFrames.push_back(child); |
for (size_t i = 0; i < childFrames.size(); ++i) |
childFrames[i]->didChangeVisibilityState(); |
} |