| Index: third_party/WebKit/Source/core/layout/ng/ng_layout_inline_items_builder.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_inline_items_builder.cc b/third_party/WebKit/Source/core/layout/ng/ng_layout_inline_items_builder.cc
|
| index 34d135e9be481d5e0f73f9dfbe2caf4b2b04dd60..fcb583502e3ffc1f29193c224d7efdc1753a2fef 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_layout_inline_items_builder.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_inline_items_builder.cc
|
| @@ -20,14 +20,14 @@ void NGLayoutInlineItemsBuilder::Append(const String& string,
|
| const ComputedStyle* style) {
|
| unsigned start_offset = text_.length();
|
| text_.append(string);
|
| - items_->emplaceAppend(start_offset, text_.length(), style);
|
| + items_->emplace_back(start_offset, text_.length(), style);
|
| }
|
|
|
| void NGLayoutInlineItemsBuilder::Append(UChar32 character,
|
| const ComputedStyle* style) {
|
| text_.append(character);
|
| unsigned end_offset = text_.length();
|
| - items_->emplaceAppend(end_offset - 1, end_offset, style);
|
| + items_->emplace_back(end_offset - 1, end_offset, style);
|
| }
|
|
|
| void NGLayoutInlineItemsBuilder::AppendBidiControl(const ComputedStyle* style,
|
|
|