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

Unified Diff: third_party/WebKit/Source/core/html/HTMLObjectElement.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/html/HTMLObjectElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
index c6b7b8a4bfc2fc5460f04d56468de75a482174cd..df19edc8b47a49c7f282257a6b0abc00c94ec910 100644
--- a/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLObjectElement.cpp
@@ -99,7 +99,7 @@ void HTMLObjectElement::ParseAttribute(
if (name == formAttr) {
FormAttributeChanged();
} else if (name == typeAttr) {
- service_type_ = params.new_value.Lower();
+ service_type_ = params.new_value.DeprecatedLower();
size_t pos = service_type_.Find(";");
if (pos != kNotFound)
service_type_ = service_type_.Left(pos);
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLinkElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTrackElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698