| Index: third_party/WebKit/Source/core/dom/ClientRectList.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ClientRectList.h b/third_party/WebKit/Source/core/dom/ClientRectList.h
|
| index 3f0d7debb980d0c94a95f96f8b052ec9727e2ebd..463873dce185899e344bc593520fc33ad8142233 100644
|
| --- a/third_party/WebKit/Source/core/dom/ClientRectList.h
|
| +++ b/third_party/WebKit/Source/core/dom/ClientRectList.h
|
| @@ -66,7 +66,7 @@ class CORE_EXPORT ClientRectList final
|
| explicit ClientRectList(const Rects& rects) {
|
| m_list.reserveInitialCapacity(rects.size());
|
| for (const auto& r : rects)
|
| - m_list.append(ClientRect::create(FloatRect(r)));
|
| + m_list.push_back(ClientRect::create(FloatRect(r)));
|
| }
|
|
|
| explicit ClientRectList(const Vector<FloatQuad>&);
|
|
|