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

Unified Diff: third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: 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/platform/feature_policy/FeaturePolicy.cpp
diff --git a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
index 19e263f841e056547c9697b211da06118e92a30d..5440bc85291870d3a2339df2ada2e7cb824a01f0 100644
--- a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
+++ b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
@@ -93,7 +93,7 @@ WebParsedFeaturePolicy ParseFeaturePolicy(const String& policy,
String target_string;
for (size_t j = 0; j < targets->size(); ++j) {
if (targets->at(j)->AsString(&target_string)) {
- if (EqualIgnoringCase(target_string, "self")) {
+ if (DeprecatedEqualIgnoringCase(target_string, "self")) {
if (!origin->IsUnique())
origins.push_back(origin);
} else if (target_string == "*") {

Powered by Google App Engine
This is Rietveld 408576698