| Index: Source/core/editing/CompositeEditCommand.cpp
|
| diff --git a/Source/core/editing/CompositeEditCommand.cpp b/Source/core/editing/CompositeEditCommand.cpp
|
| index 8ed08160346fd204489ace139c9980e297f6c010..4f8401fa2379afea10e3a01d8a2149da55e2c5d4 100644
|
| --- a/Source/core/editing/CompositeEditCommand.cpp
|
| +++ b/Source/core/editing/CompositeEditCommand.cpp
|
| @@ -70,9 +70,9 @@
|
| #include "core/html/HTMLQuoteElement.h"
|
| #include "core/html/HTMLSpanElement.h"
|
| #include "core/layout/LayoutListItem.h"
|
| +#include "core/layout/LayoutText.h"
|
| #include "core/layout/line/InlineTextBox.h"
|
| #include "core/rendering/RenderBlock.h"
|
| -#include "core/rendering/RenderText.h"
|
|
|
| namespace blink {
|
|
|
| @@ -621,7 +621,7 @@ bool CompositeEditCommand::canRebalance(const Position& position) const
|
| if (textNode->length() == 0)
|
| return false;
|
|
|
| - RenderText* renderer = textNode->renderer();
|
| + LayoutText* renderer = textNode->renderer();
|
| if (renderer && !renderer->style()->collapseWhiteSpace())
|
| return false;
|
|
|
| @@ -690,7 +690,7 @@ void CompositeEditCommand::prepareWhitespaceAtPositionForSplit(Position& positio
|
|
|
| if (textNode->length() == 0)
|
| return;
|
| - RenderText* renderer = textNode->renderer();
|
| + LayoutText* renderer = textNode->renderer();
|
| if (renderer && !renderer->style()->collapseWhiteSpace())
|
| return;
|
|
|
| @@ -733,7 +733,7 @@ void CompositeEditCommand::deleteInsignificantText(PassRefPtrWillBeRawPtr<Text>
|
|
|
| document().updateLayout();
|
|
|
| - RenderText* textRenderer = textNode->renderer();
|
| + LayoutText* textRenderer = textNode->renderer();
|
| if (!textRenderer)
|
| return;
|
|
|
|
|