| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index b680b59cb720463c60b251ee7c4439b53e3177f3..c38a128394f61de658de3923c1007a19dbbba3f3 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -417,7 +417,7 @@ class ChromePrintContext : public PrintContext {
|
| for (Frame* currentFrame = frame(); currentFrame;
|
| currentFrame = currentFrame->tree().traverseNext(frame())) {
|
| if (currentFrame->isLocalFrame())
|
| - documents.append(toLocalFrame(currentFrame)->document());
|
| + documents.push_back(toLocalFrame(currentFrame)->document());
|
| }
|
|
|
| for (auto& doc : documents)
|
|
|