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

Unified Diff: Source/core/rendering/RenderCombineText.cpp

Issue 397723006: Move RenderBlockFlow::constructTextRun out. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: 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;
« no previous file with comments | « Source/core/rendering/RenderBlockLineLayout.cpp ('k') | Source/core/rendering/RenderDeprecatedFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698