| Index: third_party/WebKit/Source/modules/eventsource/EventSource.cpp
|
| diff --git a/third_party/WebKit/Source/modules/eventsource/EventSource.cpp b/third_party/WebKit/Source/modules/eventsource/EventSource.cpp
|
| index c7019c76d59d2423f490d39c2b864f29c5889966..114fbd5f68ac89612e5d9e5add08fd3240629066 100644
|
| --- a/third_party/WebKit/Source/modules/eventsource/EventSource.cpp
|
| +++ b/third_party/WebKit/Source/modules/eventsource/EventSource.cpp
|
| @@ -253,7 +253,7 @@ void EventSource::DidReceiveResponse(
|
| const String& charset = response.TextEncodingName();
|
| // If we have a charset, the only allowed value is UTF-8 (case-insensitive).
|
| response_is_valid =
|
| - charset.IsEmpty() || EqualIgnoringCase(charset, "UTF-8");
|
| + charset.IsEmpty() || DeprecatedEqualIgnoringCase(charset, "UTF-8");
|
| if (!response_is_valid) {
|
| StringBuilder message;
|
| message.Append("EventSource's response has a charset (\"");
|
|
|