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 == "*") { |