| Index: net/spdy/spdy_session.cc
|
| diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
|
| index 26bd4b737cb7b09350eb7e09bef7e272e7f0d87b..1e50ae3701dc054eb5670dd31a53c919037c5f33 100644
|
| --- a/net/spdy/spdy_session.cc
|
| +++ b/net/spdy/spdy_session.cc
|
| @@ -61,20 +61,6 @@ const int kHungIntervalSeconds = 10;
|
| // Minimum seconds that unclaimed pushed streams will be kept in memory.
|
| const int kMinPushedStreamLifetimeSeconds = 300;
|
|
|
| -std::unique_ptr<base::ListValue> SpdyHeaderBlockToListValue(
|
| - const SpdyHeaderBlock& headers,
|
| - NetLogCaptureMode capture_mode) {
|
| - std::unique_ptr<base::ListValue> headers_list(new base::ListValue());
|
| - for (SpdyHeaderBlock::const_iterator it = headers.begin();
|
| - it != headers.end(); ++it) {
|
| - headers_list->AppendString(
|
| - it->first.as_string() + ": " +
|
| - ElideHeaderValueForNetLog(capture_mode, it->first.as_string(),
|
| - it->second.as_string()));
|
| - }
|
| - return headers_list;
|
| -}
|
| -
|
| std::unique_ptr<base::Value> NetLogSpdySynStreamSentCallback(
|
| const SpdyHeaderBlock* headers,
|
| bool fin,
|
|
|