Index: Source/core/editing/SplitTextNodeContainingElementCommand.cpp |
diff --git a/Source/core/editing/SplitTextNodeContainingElementCommand.cpp b/Source/core/editing/SplitTextNodeContainingElementCommand.cpp |
index 4d5b5ba62c2e94a6a8b2f56f2ffe06d89ae4e52c..deadc9dae5324a0213fe5e3c91c60419cbaada4a 100644 |
--- a/Source/core/editing/SplitTextNodeContainingElementCommand.cpp |
+++ b/Source/core/editing/SplitTextNodeContainingElementCommand.cpp |
@@ -28,7 +28,7 @@ |
#include "core/dom/Element.h" |
#include "core/dom/Text.h" |
-#include "core/rendering/RenderObject.h" |
+#include "core/layout/LayoutObject.h" |
#include "wtf/Assertions.h" |
namespace blink { |
@@ -51,7 +51,7 @@ void SplitTextNodeContainingElementCommand::doApply() |
if (!parent || !parent->parentElement() || !parent->parentElement()->hasEditableStyle()) |
return; |
- RenderObject* parentRenderer = parent->renderer(); |
+ LayoutObject* parentRenderer = parent->renderer(); |
if (!parentRenderer || !parentRenderer->isInline()) { |
wrapContentsInDummySpan(parent); |
Node* firstChild = parent->firstChild(); |