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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (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/AXObject.h
diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h
index f6f29f612749b9c79f0c716fd764fda9ae7d7c4d..280ae1adcf848e6ba2e9c657040686c299b5d91f 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:

Powered by Google App Engine
This is Rietveld 408576698