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

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

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Only get prefix and no capitalization. Created 3 years, 11 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
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..d3fde922a3ecfe4bef9e5e62ea127077d88b31c9 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