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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.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/AXObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
index bc0a87f1f01a031efaa690be400c538633150678..fba86a185388a52ecf7b1510d5122301db559291 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