Index: Source/core/html/shadow/MeterShadowElement.cpp |
diff --git a/Source/core/html/shadow/MeterShadowElement.cpp b/Source/core/html/shadow/MeterShadowElement.cpp |
index 5b206ee8c75fb804e308b6708dbed3b85886cece..fa6bed0bbfa262fce30602f43e7e968f4d7bd832 100644 |
--- a/Source/core/html/shadow/MeterShadowElement.cpp |
+++ b/Source/core/html/shadow/MeterShadowElement.cpp |
@@ -35,8 +35,8 @@ |
#include "core/CSSPropertyNames.h" |
#include "core/HTMLNames.h" |
#include "core/html/HTMLMeterElement.h" |
+#include "core/layout/LayoutMeter.h" |
#include "core/layout/LayoutTheme.h" |
-#include "core/rendering/RenderMeter.h" |
namespace blink { |
@@ -81,7 +81,7 @@ bool MeterInnerElement::rendererIsNeeded(const LayoutStyle& style) |
LayoutObject* MeterInnerElement::createRenderer(const LayoutStyle&) |
{ |
- return new RenderMeter(this); |
+ return new LayoutMeter(this); |
} |
inline MeterBarElement::MeterBarElement(Document& document) |