diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 18:10:42 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-14 18:10:42 +0000 |
commit | eed8c288298cd3eea692fa510117895544a0ca70 (patch) | |
tree | 889c3e41182b5c06602a7a73747e279cc3c45751 /net | |
parent | 7fe8c5d1fb9d86fb670162015d9f65cb1b349d45 (diff) | |
download | chromium_src-eed8c288298cd3eea692fa510117895544a0ca70.zip chromium_src-eed8c288298cd3eea692fa510117895544a0ca70.tar.gz chromium_src-eed8c288298cd3eea692fa510117895544a0ca70.tar.bz2 |
Add the status line to the NetLogHttpResponseParameter.
Review URL: http://codereview.chromium.org/2131001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47287 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/http_network_transaction.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc index c58038c..f40cdcd4 100644 --- a/net/http/http_network_transaction.cc +++ b/net/http/http_network_transaction.cc @@ -253,6 +253,7 @@ class NetLogHttpResponseParameter : public NetLog::EventParameters { Value* ToValue() const { DictionaryValue* dict = new DictionaryValue(); ListValue* headers = new ListValue(); + headers->Append(new StringValue(headers_->GetStatusLine())); void* iterator = NULL; std::string name; std::string value; |