Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Unified Diff: net/spdy/hpack_decoder.h

Issue 269183008: HPACK changes required for specification draft '07 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Write '07 examples as a new file name. Remove previous one. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/spdy/hpack_decoder.h
diff --git a/net/spdy/hpack_decoder.h b/net/spdy/hpack_decoder.h
index ec2949bd99b2cfbabf0c2de0cf9005cdef7f4cf3..70729667de7396243ca5a7fa12c8f18d182705ca 100644
--- a/net/spdy/hpack_decoder.h
+++ b/net/spdy/hpack_decoder.h
@@ -18,7 +18,7 @@
#include "net/spdy/spdy_protocol.h"
// An HpackDecoder decodes header sets as outlined in
-// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-06
+// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-07
namespace net {
@@ -85,9 +85,8 @@ class NET_EXPORT_PRIVATE HpackDecoder {
const uint32 max_string_literal_size_;
HpackHeaderTable header_table_;
- // Incrementally reconstructed cookie value. Name is also kept to preserve
- // input casing.
- std::string cookie_value_, cookie_name_;
+ // Incrementally reconstructed cookie value.
+ std::string cookie_value_;
// TODO(jgraettinger): Buffer for headers data, and storage for the last-
// processed headers block. Both will be removed with the switch to

Powered by Google App Engine
This is Rietveld 408576698