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

Unified Diff: third_party/WebKit/Source/platform/network/EncodedFormData.h

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/network/EncodedFormData.h
diff --git a/third_party/WebKit/Source/platform/network/EncodedFormData.h b/third_party/WebKit/Source/platform/network/EncodedFormData.h
index be4d9322a56eeef557aac3ffffa1140d8a30006e..120d1897c869723193b9a59036b7a7871f1ddcf5 100644
--- a/third_party/WebKit/Source/platform/network/EncodedFormData.h
+++ b/third_party/WebKit/Source/platform/network/EncodedFormData.h
@@ -152,9 +152,9 @@ class PLATFORM_EXPORT EncodedFormData : public RefCounted<EncodedFormData> {
}
static EncodingType ParseEncodingType(const String& type) {
- if (EqualIgnoringCase(type, "text/plain"))
+ if (DeprecatedEqualIgnoringCase(type, "text/plain"))
return kTextPlain;
- if (EqualIgnoringCase(type, "multipart/form-data"))
+ if (DeprecatedEqualIgnoringCase(type, "multipart/form-data"))
return kMultipartFormData;
return kFormURLEncoded;
}

Powered by Google App Engine
This is Rietveld 408576698