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

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

Issue 2806263002: Rename blink::AtomicString::Lower() to DeprecatedLower(). (Closed)
Patch Set: Update a comment Created 3 years, 8 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/AXNodeObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
index b7d309667ed0591c7601fbe3a25d056cc9ec493a..9f55cc1cdf362aa4eef4434c52aa254f16d1ff0c 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
@@ -1424,7 +1424,8 @@ String AXNodeObject::AriaAutoComplete() const {
return String();
const AtomicString& aria_auto_complete =
- GetAOMPropertyOrARIAAttribute(AOMStringProperty::kAutocomplete).Lower();
+ GetAOMPropertyOrARIAAttribute(AOMStringProperty::kAutocomplete)
+ .DeprecatedLower();
if (aria_auto_complete == "inline" || aria_auto_complete == "list" ||
aria_auto_complete == "both")

Powered by Google App Engine
This is Rietveld 408576698