diff options
author | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 17:53:33 +0000 |
---|---|---|
committer | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 17:53:33 +0000 |
commit | 87221b1b14635992cbdeb95b6680fcacf626dfb4 (patch) | |
tree | eabaa996f145b6627db6ef6bc53fb30addef9af1 /net | |
parent | f1775c74f4cb83320ca53b82dc4e3c28c754d6d9 (diff) | |
download | chromium_src-87221b1b14635992cbdeb95b6680fcacf626dfb4.zip chromium_src-87221b1b14635992cbdeb95b6680fcacf626dfb4.tar.gz chromium_src-87221b1b14635992cbdeb95b6680fcacf626dfb4.tar.bz2 |
An experimental change to help us diagnose a crash
in DoReadHeadersComplete.
Add an unused state, STATE_UNUSED, at the old value
of STATE_READ_HEADERS_COMPLETE (15 = 0xF) to see if
that value has any significance in the crash.
TBR=eroman
BUG=3772
Review URL: http://codereview.chromium.org/8701
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4133 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/http/http_network_transaction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/http_network_transaction.h b/net/http/http_network_transaction.h index dc850b5..86c613f 100644 --- a/net/http/http_network_transaction.h +++ b/net/http/http_network_transaction.h @@ -250,6 +250,7 @@ class HttpNetworkTransaction : public HttpTransaction { STATE_WRITE_BODY, STATE_WRITE_BODY_COMPLETE, STATE_READ_HEADERS, + STATE_UNUSED, // TODO(wtc): temporary, for debugging issue 3772. STATE_READ_HEADERS_COMPLETE, STATE_READ_BODY, STATE_READ_BODY_COMPLETE, |