| Index: net/spdy/header_coalescer.cc
|
| diff --git a/net/spdy/header_coalescer.cc b/net/spdy/header_coalescer.cc
|
| index 24bd9cb7d00ea42ac2239239d681185e31179e10..497c07991983a5423c77a16b6e4178d74736521d 100644
|
| --- a/net/spdy/header_coalescer.cc
|
| +++ b/net/spdy/header_coalescer.cc
|
| @@ -7,6 +7,7 @@
|
| #include <utility>
|
|
|
| #include "base/strings/string_util.h"
|
| +#include "net/spdy/platform/api/spdy_estimate_memory_usage.h"
|
|
|
| namespace net {
|
|
|
| @@ -70,4 +71,8 @@ SpdyHeaderBlock HeaderCoalescer::release_headers() {
|
| return std::move(headers_);
|
| }
|
|
|
| +size_t HeaderCoalescer::EstimateMemoryUsage() const {
|
| + return SpdyEstimateMemoryUsage(headers_);
|
| +}
|
| +
|
| } // namespace net
|
|
|