Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2911)

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_break_token.h

Issue 2772503004: [LayoutNG] Add NGInlineBreakToken and back of NGInlineLayoutAlgorithm (Closed)
Patch Set: Resolved merge conflicts Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_break_token.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_break_token.h b/third_party/WebKit/Source/core/layout/ng/ng_break_token.h
index d055ba4179de9fd8e2abd0d6ed243ae97e989a53..ae486ff8763957c0c76a1e0757207e501cac135a 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_break_token.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_break_token.h
@@ -35,7 +35,7 @@ class CORE_EXPORT NGBreakToken : public RefCounted<NGBreakToken> {
public:
virtual ~NGBreakToken() {}
- enum NGBreakTokenType { kBlockBreakToken, kTextBreakToken };
+ enum NGBreakTokenType { kBlockBreakToken, kInlineBreakToken };
NGBreakTokenType Type() const { return static_cast<NGBreakTokenType>(type_); }
enum NGBreakTokenStatus { kUnfinished, kFinished };

Powered by Google App Engine
This is Rietveld 408576698