| Index: content/browser/accessibility/ax_platform_position.cc
|
| diff --git a/content/browser/accessibility/ax_platform_position.cc b/content/browser/accessibility/ax_platform_position.cc
|
| index cecd16b19abb0b2f41858aa775408c880fe451b0..34d313929c307f958c8924b515d8eccc9621f36b 100644
|
| --- a/content/browser/accessibility/ax_platform_position.cc
|
| +++ b/content/browser/accessibility/ax_platform_position.cc
|
| @@ -69,13 +69,13 @@ void AXPlatformPosition::AnchorParent(AXTreeID* tree_id,
|
| DCHECK(tree_id);
|
| DCHECK(parent_id);
|
|
|
| - if (!GetAnchor() || !GetAnchor()->GetParent()) {
|
| + if (!GetAnchor() || !GetAnchor()->PlatformGetParent()) {
|
| *tree_id = AXPosition::INVALID_TREE_ID;
|
| *parent_id = AXPosition::INVALID_ANCHOR_ID;
|
| return;
|
| }
|
|
|
| - BrowserAccessibility* parent = GetAnchor()->GetParent();
|
| + BrowserAccessibility* parent = GetAnchor()->PlatformGetParent();
|
| *tree_id = parent->manager()->ax_tree_id();
|
| *parent_id = parent->GetId();
|
| }
|
|
|