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

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
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.cpp ('k') | Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.cpp ('k') | Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698