| Index: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp
|
| index 09dd2002fc78b315f1a55d5771e7ba9d3cdbdadc..4c5806960f3ae9186c9836b71aa428cea00bf921 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp
|
| @@ -1046,14 +1046,14 @@ bool AXObjectCacheImpl::accessibilityEnabled() {
|
| Settings* settings = this->settings();
|
| if (!settings)
|
| return false;
|
| - return settings->accessibilityEnabled();
|
| + return settings->GetAccessibilityEnabled();
|
| }
|
|
|
| bool AXObjectCacheImpl::inlineTextBoxAccessibilityEnabled() {
|
| Settings* settings = this->settings();
|
| if (!settings)
|
| return false;
|
| - return settings->inlineTextBoxAccessibilityEnabled();
|
| + return settings->GetInlineTextBoxAccessibilityEnabled();
|
| }
|
|
|
| const Element* AXObjectCacheImpl::rootAXEditableElement(const Node* node) {
|
|
|