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. |