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

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

Issue 942583002: Move rendering/RenderProgress to layout/LayoutProgress (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/HTMLProgressElement.cpp ('k') | Source/core/layout/LayoutProgress.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/ProgressShadowElement.cpp
diff --git a/Source/core/html/shadow/ProgressShadowElement.cpp b/Source/core/html/shadow/ProgressShadowElement.cpp
index dde73f8e3c593226f44e83ef484685e53f20cbbc..e9d104e81fa098ac3ee0b5ecafb0005adb84eff7 100644
--- a/Source/core/html/shadow/ProgressShadowElement.cpp
+++ b/Source/core/html/shadow/ProgressShadowElement.cpp
@@ -34,7 +34,7 @@
#include "core/HTMLNames.h"
#include "core/html/HTMLProgressElement.h"
-#include "core/rendering/RenderProgress.h"
+#include "core/layout/LayoutProgress.h"
namespace blink {
@@ -65,7 +65,7 @@ DEFINE_NODE_FACTORY(ProgressInnerElement)
LayoutObject* ProgressInnerElement::createRenderer(const LayoutStyle&)
{
- return new RenderProgress(this);
+ return new LayoutProgress(this);
}
bool ProgressInnerElement::rendererIsNeeded(const LayoutStyle& style)
« no previous file with comments | « Source/core/html/HTMLProgressElement.cpp ('k') | Source/core/layout/LayoutProgress.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698