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

Unified Diff: Source/modules/accessibility/AXSlider.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/AXScrollView.cpp ('k') | Source/modules/accessibility/AXSpinButton.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXSlider.cpp
diff --git a/Source/modules/accessibility/AXSlider.cpp b/Source/modules/accessibility/AXSlider.cpp
index 533071d1b8ba1f3c7092cffcaf97d97f213291f8..d2c688ab7d8d3e755c232592f2eec516366433dc 100644
--- a/Source/modules/accessibility/AXSlider.cpp
+++ b/Source/modules/accessibility/AXSlider.cpp
@@ -145,7 +145,7 @@ LayoutRect AXSliderThumb::elementRect() const
if (!m_parent)
return LayoutRect();
- LayoutObject* sliderLayoutObject = m_parent->renderer();
+ LayoutObject* sliderLayoutObject = m_parent->layoutObject();
if (!sliderLayoutObject || !sliderLayoutObject->isSlider())
return LayoutRect();
return toElement(sliderLayoutObject->node())->closedShadowRoot()->getElementById(ShadowElementNames::sliderThumb())->boundingBox();
« no previous file with comments | « Source/modules/accessibility/AXScrollView.cpp ('k') | Source/modules/accessibility/AXSpinButton.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698