| Index: Source/core/rendering/RenderCombineText.cpp
|
| diff --git a/Source/core/rendering/RenderCombineText.cpp b/Source/core/rendering/RenderCombineText.cpp
|
| index 2e58c5f995b833d3d6ea76924103d3049ce6941c..ac411bc13550c8a6a24740d5040fee14817cc596 100644
|
| --- a/Source/core/rendering/RenderCombineText.cpp
|
| +++ b/Source/core/rendering/RenderCombineText.cpp
|
| @@ -21,7 +21,7 @@
|
| #include "config.h"
|
| #include "core/rendering/RenderCombineText.h"
|
|
|
| -#include "core/rendering/RenderBlockFlow.h"
|
| +#include "core/rendering/TextRunConstructor.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -99,7 +99,7 @@ void RenderCombineText::combineText()
|
| if (style()->isHorizontalWritingMode())
|
| return;
|
|
|
| - TextRun run = RenderBlockFlow::constructTextRun(this, originalFont(), this, style(), style()->direction());
|
| + TextRun run = constructTextRun(this, originalFont(), this, style(), style()->direction());
|
| FontDescription description = originalFont().fontDescription();
|
| float emWidth = description.computedSize() * textCombineMargin;
|
| bool shouldUpdateFont = false;
|
|
|