Index: Source/core/html/HTMLWBRElement.cpp |
diff --git a/Source/core/html/HTMLWBRElement.cpp b/Source/core/html/HTMLWBRElement.cpp |
index e3a1f5dec01e22932a87c89a23b2ebd0bbd91127..b941f92353ff8a0969bd866a5c8aad45151dda0c 100644 |
--- a/Source/core/html/HTMLWBRElement.cpp |
+++ b/Source/core/html/HTMLWBRElement.cpp |
@@ -32,7 +32,7 @@ |
#include "core/html/HTMLWBRElement.h" |
#include "core/HTMLNames.h" |
-#include "core/rendering/RenderWordBreak.h" |
+#include "core/layout/LayoutWordBreak.h" |
namespace blink { |
@@ -47,7 +47,7 @@ DEFINE_NODE_FACTORY(HTMLWBRElement) |
LayoutObject* HTMLWBRElement::createRenderer(const LayoutStyle& style) |
{ |
- return new RenderWordBreak(this); |
+ return new LayoutWordBreak(this); |
} |
} |