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

Unified Diff: Source/modules/accessibility/AXScrollView.cpp

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/AXSlider.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXScrollView.cpp
diff --git a/Source/modules/accessibility/AXScrollView.cpp b/Source/modules/accessibility/AXScrollView.cpp
index 4db06746cc546baecf71458a67ec7016db06c35f..cbadd2274faefe01931b113eb6401c589bce387b 100644
--- a/Source/modules/accessibility/AXScrollView.cpp
+++ b/Source/modules/accessibility/AXScrollView.cpp
@@ -224,7 +224,7 @@ AXObject* AXScrollView::computeParent() const
// FIXME: Broken for OOPI.
HTMLFrameOwnerElement* owner = m_scrollView->frame().deprecatedLocalOwner();
- if (owner && owner->renderer())
+ if (owner && owner->layoutObject())
return axObjectCache()->getOrCreate(owner);
return axObjectCache()->getOrCreate(m_scrollView->frame().pagePopupOwner());
@@ -236,7 +236,7 @@ AXObject* AXScrollView::computeParentIfExists() const
return 0;
HTMLFrameOwnerElement* owner = m_scrollView->frame().deprecatedLocalOwner();
- if (owner && owner->renderer())
+ if (owner && owner->layoutObject())
return axObjectCache()->get(owner);
return axObjectCache()->get(m_scrollView->frame().pagePopupOwner());
« no previous file with comments | « Source/modules/accessibility/AXObjectCacheImpl.cpp ('k') | Source/modules/accessibility/AXSlider.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698