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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSSelectorParser.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/css/parser/CSSSelectorParser.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
index e47c608cd2f1b0062462a96a31156906988d4b38..65a3dd89aae153dda07d0928f2ea9298a2891c0d 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
@@ -238,7 +238,7 @@ std::unique_ptr<CSSParserSelector> CSSSelectorParser::ConsumeCompoundSelector(
compound_pseudo_element = compound_selector->GetPseudoType();
}
if (context_->IsHTMLDocument())
- element_name = element_name.Lower();
+ element_name = element_name.DeprecatedLower();
while (std::unique_ptr<CSSParserSelector> simple_selector =
ConsumeSimpleSelector(range)) {
@@ -387,7 +387,7 @@ std::unique_ptr<CSSParserSelector> CSSSelectorParser::ConsumeAttribute(
block.ConsumeWhitespace();
if (context_->IsHTMLDocument())
- attribute_name = attribute_name.Lower();
+ attribute_name = attribute_name.DeprecatedLower();
AtomicString namespace_uri = DetermineNamespace(namespace_prefix);
if (namespace_uri.IsNull())

Powered by Google App Engine
This is Rietveld 408576698