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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutInline.cpp

Issue 2900633003: Make TextEmphasisMark an enum class. (Closed)
Patch Set: Rebase Created 3 years, 7 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/LayoutInline.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.cpp b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
index 2cbe2e2beb2b07a9640d1bc24e7407fc75563084..3c3c8fdd7f0d788628b74b37c19222456a469c47 100644
--- a/third_party/WebKit/Source/core/layout/LayoutInline.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
@@ -230,7 +230,7 @@ void LayoutInline::UpdateAlwaysCreateLineBoxes(bool full_layout) {
(parent_layout_inline &&
parent_style.VerticalAlign() != EVerticalAlign::kBaseline) ||
Style()->VerticalAlign() != EVerticalAlign::kBaseline ||
- Style()->GetTextEmphasisMark() != kTextEmphasisMarkNone ||
+ Style()->GetTextEmphasisMark() != TextEmphasisMark::kNone ||
(check_fonts &&
(!StyleRef().HasIdenticalAscentDescentAndLineGap(parent_style) ||
parent_style.LineHeight() != StyleRef().LineHeight()));

Powered by Google App Engine
This is Rietveld 408576698