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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.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/AXObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
index bc0a87f1f01a031efaa690be400c538633150678..43efc61b0bb9ff4aaa9ad7ffb77007246b87263e 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
@@ -419,7 +419,7 @@ bool AXObject::isMenuRelated() const {
bool AXObject::isPasswordFieldAndShouldHideValue() const {
Settings* settings = getDocument()->settings();
- if (!settings || settings->accessibilityPasswordValuesEnabled())
+ if (!settings || settings->getAccessibilityPasswordValuesEnabled())
return false;
return isPasswordField();

Powered by Google App Engine
This is Rietveld 408576698