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

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

Issue 1743803002: Rename enums/functions that collide in chromium style in core/style/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-8
Patch Set: get-names-9: rebase Created 4 years, 10 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 2b830b070a27d7c5b949c5e36aaf1bcc82416526..b067ecad0efff31bb8e6ac176ca999fc365f2709 100644
--- a/third_party/WebKit/Source/core/layout/LayoutInline.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
@@ -211,7 +211,7 @@ void LayoutInline::updateAlwaysCreateLineBoxes(bool fullLayout)
bool alwaysCreateLineBoxesNew = (parentLayoutInline && parentLayoutInline->alwaysCreateLineBoxes())
|| (parentLayoutInline && parentStyle.verticalAlign() != BASELINE)
|| style()->verticalAlign() != BASELINE
- || style()->textEmphasisMark() != TextEmphasisMarkNone
+ || style()->getTextEmphasisMark() != TextEmphasisMarkNone
|| (checkFonts && (!parentStyle.font().fontMetrics().hasIdenticalAscentDescentAndLineGap(style()->font().fontMetrics())
|| parentStyle.lineHeight() != style()->lineHeight()));

Powered by Google App Engine
This is Rietveld 408576698