Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1347)

Unified Diff: Source/core/html/shadow/MeterShadowElement.cpp

Issue 948063002: Move rendering/RenderMeter to layout/LayoutMeter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLMeterElement.cpp ('k') | Source/core/layout/LayoutMeter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/core/html/HTMLMeterElement.cpp ('k') | Source/core/layout/LayoutMeter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698