Index: Source/core/html/HTMLBRElement.cpp |
diff --git a/Source/core/html/HTMLBRElement.cpp b/Source/core/html/HTMLBRElement.cpp |
index c3efe748df282bc76f80478c0d8be37d5b79178c..384e252c2c21929441aa8964063f7b95c76b730e 100644 |
--- a/Source/core/html/HTMLBRElement.cpp |
+++ b/Source/core/html/HTMLBRElement.cpp |
@@ -26,7 +26,7 @@ |
#include "core/CSSPropertyNames.h" |
#include "core/CSSValueKeywords.h" |
#include "core/HTMLNames.h" |
-#include "core/rendering/RenderBR.h" |
+#include "core/layout/LayoutBR.h" |
namespace blink { |
@@ -65,7 +65,7 @@ LayoutObject* HTMLBRElement::createRenderer(const LayoutStyle& style) |
{ |
if (style.hasContent()) |
return LayoutObject::createObject(this, style); |
- return new RenderBR(this); |
+ return new LayoutBR(this); |
} |
} |