From b75c5d19084dfa4cafb6fdb6ffd715bca09e9123 Mon Sep 17 00:00:00 2001 From: "wtc@google.com" Date: Thu, 11 Sep 2008 16:55:01 +0000 Subject: Declare the bool members next to each other so they can be packed. Fix indentation. R=eroman Review URL: http://codereview.chromium.org/1926 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2064 0039d316-1c4b-4281-b951-d872f2087c98 --- net/http/http_chunked_decoder.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'net/http/http_chunked_decoder.h') diff --git a/net/http/http_chunked_decoder.h b/net/http/http_chunked_decoder.h index 970d1d1..0e41bb1 100644 --- a/net/http/http_chunked_decoder.h +++ b/net/http/http_chunked_decoder.h @@ -97,12 +97,12 @@ class HttpChunkedDecoder { // Indicates the number of bytes remaining for the current chunk. int chunk_remaining_; - // True if waiting for the terminal CRLF of a chunk's data. - bool chunk_terminator_remaining_; - // A small buffer used to store a partial chunk marker. std::string line_buf_; + // True if waiting for the terminal CRLF of a chunk's data. + bool chunk_terminator_remaining_; + // Set to true when FilterBuf encounters the last-chunk. bool reached_last_chunk_; -- cgit v1.1