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

Unified Diff: third_party/WebKit/Source/core/html/HTMLEmbedElement.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/HTMLEmbedElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp b/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
index d02331b3af6b1c9a1095f2fb5de602b4d6ae71a9..720401dc40d044534bc29fe6f15cd8b836d8e87a 100644
--- a/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
@@ -95,7 +95,7 @@ void HTMLEmbedElement::CollectStyleForPresentationAttribute(
void HTMLEmbedElement::ParseAttribute(
const AttributeModificationParams& params) {
if (params.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);

Powered by Google App Engine
This is Rietveld 408576698