Commit 7dc0e4b7 authored by rch@chromium.org's avatar rch@chromium.org

Remove the (now-empty) sent_info field when logging QUIC ack frames.

Review URL: https://codereview.chromium.org/348553004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278834 0039d316-1c4b-4281-b951-d872f2087c98
parent 0d17cd74
...@@ -102,10 +102,6 @@ base::Value* NetLogQuicStreamFrameCallback(const QuicStreamFrame* frame, ...@@ -102,10 +102,6 @@ base::Value* NetLogQuicStreamFrameCallback(const QuicStreamFrame* frame,
base::Value* NetLogQuicAckFrameCallback(const QuicAckFrame* frame, base::Value* NetLogQuicAckFrameCallback(const QuicAckFrame* frame,
NetLog::LogLevel /* log_level */) { NetLog::LogLevel /* log_level */) {
base::DictionaryValue* dict = new base::DictionaryValue(); base::DictionaryValue* dict = new base::DictionaryValue();
base::DictionaryValue* sent_info = new base::DictionaryValue();
dict->Set("sent_info", sent_info);
sent_info->SetString("least_unacked",
base::Uint64ToString(frame->sent_info.least_unacked));
base::DictionaryValue* received_info = new base::DictionaryValue(); base::DictionaryValue* received_info = new base::DictionaryValue();
dict->Set("received_info", received_info); dict->Set("received_info", received_info);
received_info->SetString( received_info->SetString(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment