Index: Source/core/paint/TextPainter.cpp |
diff --git a/Source/core/paint/TextPainter.cpp b/Source/core/paint/TextPainter.cpp |
index cdb4187e68e49ebd1257f28ae2411cd6fa28ec2a..c22eff2ac259d86d4209110d18d0c0abbfd149ad 100644 |
--- a/Source/core/paint/TextPainter.cpp |
+++ b/Source/core/paint/TextPainter.cpp |
@@ -210,9 +210,9 @@ void TextPainter::paintEmphasisMarkForCombinedText() |
FloatPoint emphasisMarkTextOrigin(m_textBounds.x(), m_textBounds.y() + m_font.fontMetrics().ascent() + m_emphasisMarkOffset); |
TextRunPaintInfo textRunPaintInfo(placeholderTextRun); |
textRunPaintInfo.bounds = m_textBounds; |
- m_graphicsContext->concatCTM(InlineTextBox::rotation(m_textBounds, InlineTextBox::Clockwise)); |
+ m_graphicsContext->concatCTM(rotation(m_textBounds, Clockwise)); |
m_graphicsContext->drawEmphasisMarks(m_combinedText->originalFont(), textRunPaintInfo, m_emphasisMark, emphasisMarkTextOrigin); |
- m_graphicsContext->concatCTM(InlineTextBox::rotation(m_textBounds, InlineTextBox::Counterclockwise)); |
+ m_graphicsContext->concatCTM(rotation(m_textBounds, Counterclockwise)); |
} |
} // namespace blink |