| Index: third_party/WebKit/Source/core/layout/ng/ng_units.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_units.cc b/third_party/WebKit/Source/core/layout/ng/ng_units.cc
|
| index 4db0bc8bac5f94a2ec0165626841100ed6cc1419..5ca4d0d24455acb8e2b47757ddf99b0e523bbeb0 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_units.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_units.cc
|
| @@ -258,7 +258,7 @@ NGExclusions::NGExclusions(const NGExclusions& other) {
|
| }
|
|
|
| void NGExclusions::Add(const NGExclusion& exclusion) {
|
| - storage.append(WTF::makeUnique<NGExclusion>(exclusion));
|
| + storage.push_back(WTF::makeUnique<NGExclusion>(exclusion));
|
| if (exclusion.type == NGExclusion::kFloatLeft) {
|
| last_left_float = storage.rbegin()->get();
|
| } else if (exclusion.type == NGExclusion::kFloatRight) {
|
|
|