| Index: third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PageAnimator.cpp b/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| index 9ba3ee6f29067106d8c06bc60ac0382fac805c3c..b1a1f1daa2ffbed00cf4c0e51f36a9a9e80897b8 100644
|
| --- a/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| @@ -37,7 +37,7 @@ void PageAnimator::serviceScriptedAnimations(
|
| for (Frame* frame = m_page->mainFrame(); frame;
|
| frame = frame->tree().traverseNext()) {
|
| if (frame->isLocalFrame())
|
| - documents.append(toLocalFrame(frame)->document());
|
| + documents.push_back(toLocalFrame(frame)->document());
|
| }
|
|
|
| for (auto& document : documents) {
|
|
|