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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.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/core/dom/custom/V0CustomElementRegistry.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
index 5533561ce7a62911801b8d81960d6686b57263af..2aada5f6ea2a174ef5c55938d4e6c3101c2d864a 100644
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.cpp
@@ -48,7 +48,7 @@ V0CustomElementDefinition* V0CustomElementRegistry::RegisterElement(
const AtomicString& user_supplied_name,
V0CustomElement::NameSet valid_names,
ExceptionState& exception_state) {
- AtomicString type = user_supplied_name.Lower();
+ AtomicString type = user_supplied_name.DeprecatedLower();
if (!constructor_builder->IsFeatureAllowed()) {
V0CustomElementException::ThrowException(

Powered by Google App Engine
This is Rietveld 408576698