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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Capitalize the prefix. Created 4 years 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
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) {

Powered by Google App Engine
This is Rietveld 408576698