| Index: third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
|
| index 875f52a781333ec6fc561d8df33b0c0821cb7c84..fdd370d493db9acb9463cd00c2f6c299f4d64223 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
|
| @@ -208,7 +208,7 @@ void NGInlineNode::ShapeText() {
|
| CachingWordShapeIterator iterator(shape_cache, item_run, &item_font);
|
| RefPtr<const ShapeResult> word_result;
|
| while (iterator.next(&word_result)) {
|
| - item.shape_results_.append(word_result.get());
|
| + item.shape_results_.push_back(word_result.get());
|
| };
|
| }
|
| }
|
|
|