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

Unified Diff: third_party/WebKit/Source/core/loader/HistoryItem.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/loader/HistoryItem.cpp
diff --git a/third_party/WebKit/Source/core/loader/HistoryItem.cpp b/third_party/WebKit/Source/core/loader/HistoryItem.cpp
index 961755b5496340eafe742177bffbff96af56a80e..ad722d151897053e114f904c8d024f79e57cee71 100644
--- a/third_party/WebKit/Source/core/loader/HistoryItem.cpp
+++ b/third_party/WebKit/Source/core/loader/HistoryItem.cpp
@@ -137,7 +137,7 @@ const AtomicString& HistoryItem::FormContentType() const {
}
void HistoryItem::SetFormInfoFromRequest(const ResourceRequest& request) {
- if (EqualIgnoringCase(request.HttpMethod(), "POST")) {
+ if (DeprecatedEqualIgnoringCase(request.HttpMethod(), "POST")) {
// FIXME: Eventually we have to make this smart enough to handle the case
// where we have a stream for the body to handle the "data interspersed with
// files" feature.

Powered by Google App Engine
This is Rietveld 408576698