Chromium Code Reviews| Index: net/spdy/spdy_write_queue.cc |
| diff --git a/net/spdy/spdy_write_queue.cc b/net/spdy/spdy_write_queue.cc |
| index 50df9440a777541ffcf4cbc66c45eb4f08243a02..26427185dd8be0e5ac22ed91f58312c030c0d95a 100644 |
| --- a/net/spdy/spdy_write_queue.cc |
| +++ b/net/spdy/spdy_write_queue.cc |
| @@ -155,4 +155,10 @@ void SpdyWriteQueue::Clear() { |
| removing_writes_ = false; |
| } |
| +size_t SpdyWriteQueue::EstimateMemoryUsage() const { |
| + // TODO(xunjieli): https://crbug.com/669108. return allocation from |queue_| |
| + // once memory_usage_estimator.h supports std::deque. |
| + return 0; |
|
DmitrySkiba
2017/02/06 18:02:34
std::deque is supported now, so this should be EMU
xunjieli
2017/02/08 15:42:50
Done.
|
| +} |
| + |
| } // namespace net |