| Index: third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/FetchUtils.cpp b/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| index 8baceb2aa0a9d9e8bdf87a0165cc1b93f8aec2e5..223e0c848d63b9b914fb7d8baa8bb71a5b958e3d 100644
|
| --- a/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| @@ -27,8 +27,8 @@ class ForbiddenHeaderNames {
|
| public:
|
| bool has(const String& name) const {
|
| return m_fixedNames.contains(name) ||
|
| - name.startsWith(m_proxyHeaderPrefix, TextCaseInsensitive) ||
|
| - name.startsWith(m_secHeaderPrefix, TextCaseInsensitive);
|
| + name.startsWith(m_proxyHeaderPrefix, TextCaseASCIIInsensitive) ||
|
| + name.startsWith(m_secHeaderPrefix, TextCaseASCIIInsensitive);
|
| }
|
|
|
| static const ForbiddenHeaderNames& get();
|
|
|