| 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();
|
| }
|
|
|
|
|
|
|