| Index: third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
|
| diff --git a/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h b/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
|
| index 1e87743adf1739c46b13c1b0e8c85b338218ffbd..2b86e53a0beb62b4e621075e34a4c1620f93f2cd 100644
|
| --- a/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
|
| +++ b/third_party/WebKit/Source/platform/network/HTTPHeaderMap.h
|
| @@ -72,7 +72,7 @@ class PLATFORM_EXPORT HTTPHeaderMap final {
|
| return m_headers.set(k, v);
|
| }
|
| AddResult add(const AtomicString& k, const AtomicString& v) {
|
| - return m_headers.add(k, v);
|
| + return m_headers.insert(k, v);
|
| }
|
| void remove(const AtomicString& k) { m_headers.erase(k); }
|
| bool operator!=(const HTTPHeaderMap& rhs) const {
|
|
|