| Index: third_party/WebKit/Source/core/dom/ClientRectList.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ClientRectList.cpp b/third_party/WebKit/Source/core/dom/ClientRectList.cpp
|
| index 02c2dbf639d86bce53d8837120f45ccb8ad675e4..a39e743f14d2c28c9580e4776b7c3fddb33b15de 100644
|
| --- a/third_party/WebKit/Source/core/dom/ClientRectList.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ClientRectList.cpp
|
| @@ -33,7 +33,7 @@ ClientRectList::ClientRectList() {}
|
| ClientRectList::ClientRectList(const Vector<FloatQuad>& quads) {
|
| m_list.reserveInitialCapacity(quads.size());
|
| for (const auto& quad : quads)
|
| - m_list.append(ClientRect::create(quad.boundingBox()));
|
| + m_list.push_back(ClientRect::create(quad.boundingBox()));
|
| }
|
|
|
| unsigned ClientRectList::length() const {
|
|
|