| Index: Source/modules/accessibility/AXObject.h
|
| diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h
|
| index 8a168d5d8086e1804874f7ca0fc2bb0d6f6177d5..c197f4f44b0463ebb7ceb6532ced2eb689035521 100644
|
| --- a/Source/modules/accessibility/AXObject.h
|
| +++ b/Source/modules/accessibility/AXObject.h
|
| @@ -46,7 +46,7 @@ class Element;
|
| class FrameView;
|
| class IntPoint;
|
| class Node;
|
| -class RenderObject;
|
| +class LayoutObject;
|
| class ScrollableArea;
|
| class Widget;
|
|
|
| @@ -556,7 +556,7 @@ public:
|
|
|
| // DOM and Render tree access.
|
| virtual Node* node() const { return 0; }
|
| - virtual RenderObject* renderer() const { return 0; }
|
| + virtual LayoutObject* renderer() const { return 0; }
|
| virtual Document* document() const;
|
| virtual FrameView* documentFrameView() const;
|
| virtual Element* anchorElement() const { return 0; }
|
| @@ -606,7 +606,7 @@ public:
|
| static bool isARIAControl(AccessibilityRole);
|
| static bool isARIAInput(AccessibilityRole);
|
| static AccessibilityRole ariaRoleToWebCoreRole(const String&);
|
| - static IntRect boundingBoxForQuads(RenderObject*, const Vector<FloatQuad>&);
|
| + static IntRect boundingBoxForQuads(LayoutObject*, const Vector<FloatQuad>&);
|
| static const AtomicString& roleName(AccessibilityRole);
|
|
|
| protected:
|
|
|