| Index: third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h
|
| index 0e527708d8b34d3b98af7c6367f0852931aa722e..12dd1b6558bc9a8865c190d12dcc3c88d255452f 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_item_result.h
|
| @@ -42,6 +42,14 @@ struct CORE_EXPORT NGInlineItemResult {
|
| // NGBoxStrut for atomic inline items.
|
| NGBoxStrut margins;
|
|
|
| + // Inside of this is not breakable.
|
| + // Used only during line breaking.
|
| + unsigned no_break_opportunities_inside : 1;
|
| +
|
| + // Lines must not break after this.
|
| + // Used only during line breaking.
|
| + unsigned prohibit_break_after : 1;
|
| +
|
| NGInlineItemResult();
|
| NGInlineItemResult(unsigned index, unsigned start, unsigned end);
|
| };
|
|
|