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

Unified Diff: Source/modules/accessibility/AXRenderObject.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/AXObjectCacheImpl.cpp ('k') | Source/modules/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXRenderObject.h
diff --git a/Source/modules/accessibility/AXRenderObject.h b/Source/modules/accessibility/AXRenderObject.h
index 3297d6ce14fac4a765d4de693e2eeffd0452e38b..193f6e5f367bff6233af3a18213abe135887ac07 100644
--- a/Source/modules/accessibility/AXRenderObject.h
+++ b/Source/modules/accessibility/AXRenderObject.h
@@ -47,17 +47,17 @@ class Widget;
class AXRenderObject : public AXNodeObject {
protected:
- AXRenderObject(RenderObject*, AXObjectCacheImpl*);
+ AXRenderObject(LayoutObject*, AXObjectCacheImpl*);
public:
- static PassRefPtr<AXRenderObject> create(RenderObject*, AXObjectCacheImpl*);
+ static PassRefPtr<AXRenderObject> create(LayoutObject*, AXObjectCacheImpl*);
virtual ~AXRenderObject();
// Public, overridden from AXObject.
- virtual RenderObject* renderer() const override final { return m_renderer; }
+ virtual LayoutObject* renderer() const override final { return m_renderer; }
virtual LayoutRect elementRect() const override;
- void setRenderer(RenderObject*);
+ void setRenderer(LayoutObject*);
RenderBoxModelObject* renderBoxModelObject() const;
Document* topDocument() const;
bool shouldNotifyActiveDescendant() const;
@@ -67,7 +67,7 @@ public:
void updateCachedElementRect() const;
protected:
- RenderObject* m_renderer;
+ LayoutObject* m_renderer;
mutable LayoutRect m_cachedElementRect;
mutable LayoutRect m_cachedFrameRect;
mutable IntPoint m_cachedScrollPosition;
@@ -199,8 +199,8 @@ private:
bool nodeIsTextControl(const Node*) const;
bool isTabItemSelected() const;
AXObject* accessibilityImageMapHitTest(HTMLAreaElement*, const IntPoint&) const;
- bool renderObjectIsObservable(RenderObject*) const;
- RenderObject* renderParentObject() const;
+ bool layoutObjectIsObservable(LayoutObject*) const;
+ LayoutObject* renderParentObject() const;
bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const;
bool isSVGImage() const;
void detachRemoteSVGRoot();
« no previous file with comments | « Source/modules/accessibility/AXObjectCacheImpl.cpp ('k') | Source/modules/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698