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

Unified Diff: third_party/WebKit/Source/core/html/CrossOriginAttribute.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/core/html/CrossOriginAttribute.cpp
diff --git a/third_party/WebKit/Source/core/html/CrossOriginAttribute.cpp b/third_party/WebKit/Source/core/html/CrossOriginAttribute.cpp
index c3adb9fdaa45548118c084111c2250b957ec5e78..d56a722e32f43b321d7add4544b6e36ee9db6a54 100644
--- a/third_party/WebKit/Source/core/html/CrossOriginAttribute.cpp
+++ b/third_party/WebKit/Source/core/html/CrossOriginAttribute.cpp
@@ -9,7 +9,7 @@ namespace blink {
CrossOriginAttributeValue GetCrossOriginAttributeValue(const String& value) {
if (value.IsNull())
return kCrossOriginAttributeNotSet;
- if (EqualIgnoringCase(value, "use-credentials"))
+ if (DeprecatedEqualIgnoringCase(value, "use-credentials"))
return kCrossOriginAttributeUseCredentials;
return kCrossOriginAttributeAnonymous;
}

Powered by Google App Engine
This is Rietveld 408576698