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

Unified Diff: Source/modules/accessibility/AXProgressIndicator.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/modules/accessibility/AXProgressIndicator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXProgressIndicator.cpp
diff --git a/Source/modules/accessibility/AXProgressIndicator.cpp b/Source/modules/accessibility/AXProgressIndicator.cpp
index aa53fdde0c1ab53bd8648c8b5c8a7039fafa9372..dbb05d69b150eb73d6f0fa51d28355f2a1737b06 100644
--- a/Source/modules/accessibility/AXProgressIndicator.cpp
+++ b/Source/modules/accessibility/AXProgressIndicator.cpp
@@ -22,7 +22,7 @@
#include "modules/accessibility/AXProgressIndicator.h"
#include "core/html/HTMLProgressElement.h"
-#include "core/rendering/RenderProgress.h"
+#include "core/layout/LayoutProgress.h"
#include "modules/accessibility/AXObjectCacheImpl.h"
#include "platform/FloatConversion.h"
@@ -30,12 +30,12 @@ namespace blink {
using namespace HTMLNames;
-AXProgressIndicator::AXProgressIndicator(RenderProgress* renderer, AXObjectCacheImpl* axObjectCache)
+AXProgressIndicator::AXProgressIndicator(LayoutProgress* renderer, AXObjectCacheImpl* axObjectCache)
: AXRenderObject(renderer, axObjectCache)
{
}
-PassRefPtr<AXProgressIndicator> AXProgressIndicator::create(RenderProgress* renderer, AXObjectCacheImpl* axObjectCache)
+PassRefPtr<AXProgressIndicator> AXProgressIndicator::create(LayoutProgress* renderer, AXObjectCacheImpl* axObjectCache)
{
return adoptRef(new AXProgressIndicator(renderer, axObjectCache));
}
@@ -74,7 +74,7 @@ float AXProgressIndicator::minValueForRange() const
HTMLProgressElement* AXProgressIndicator::element() const
{
- return toRenderProgress(m_renderer)->progressElement();
+ return toLayoutProgress(m_renderer)->progressElement();
}
« no previous file with comments | « Source/modules/accessibility/AXProgressIndicator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698