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

Unified Diff: Source/modules/accessibility/AXProgressIndicator.h

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
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;
« no previous file with comments | « Source/modules/accessibility/AXObjectCacheImpl.cpp ('k') | Source/modules/accessibility/AXProgressIndicator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698