Index: Source/modules/accessibility/AXProgressIndicator.h |
diff --git a/Source/modules/accessibility/AXProgressIndicator.h b/Source/modules/accessibility/AXProgressIndicator.h |
index 753ea0b0d748713c93d91d16479edd4a0196b840..75d5972ce0035e15702c1dabc02848ddb0fb356b 100644 |
--- a/Source/modules/accessibility/AXProgressIndicator.h |
+++ b/Source/modules/accessibility/AXProgressIndicator.h |
@@ -27,11 +27,11 @@ namespace blink { |
class AXObjectCacheImpl; |
class HTMLProgressElement; |
-class RenderProgress; |
+class LayoutProgress; |
class AXProgressIndicator final : public AXRenderObject { |
public: |
- static PassRefPtr<AXProgressIndicator> create(RenderProgress*, AXObjectCacheImpl*); |
+ static PassRefPtr<AXProgressIndicator> create(LayoutProgress*, AXObjectCacheImpl*); |
private: |
virtual AccessibilityRole roleValue() const override { return ProgressIndicatorRole; } |
@@ -42,7 +42,7 @@ private: |
virtual float maxValueForRange() const override; |
virtual float minValueForRange() const override; |
- AXProgressIndicator(RenderProgress*, AXObjectCacheImpl*); |
+ AXProgressIndicator(LayoutProgress*, AXObjectCacheImpl*); |
HTMLProgressElement* element() const; |
virtual bool computeAccessibilityIsIgnored() const override; |