| 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 0afe028a0fe93e06d2bbb21947fd945670f2968c..b20482df31db97ce29860a990a7b31dcbf38c6af 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.remove(k); }
|
| bool operator!=(const HTTPHeaderMap& rhs) const {
|
|
|