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

Unified Diff: net/spdy/hpack_entry.h

Issue 352583006: HPACK changes required for specification draft '08 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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_entry.h
diff --git a/net/spdy/hpack_entry.h b/net/spdy/hpack_entry.h
index 53d7e28614d599fbb3487597efdafa7222c4d29d..90298fe4d0709e0698ed674045a432dce1305def 100644
--- a/net/spdy/hpack_entry.h
+++ b/net/spdy/hpack_entry.h
@@ -15,16 +15,16 @@
#include "net/base/net_export.h"
// All section references below are to
-// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-07
+// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-08
namespace net {
-// A structure for an entry in the header table (3.1.2) and the
-// reference set (3.1.3).
+// A structure for an entry in the header table (3.2) and the
+// reference set (3.3).
class NET_EXPORT_PRIVATE HpackEntry {
public:
// The constant amount added to name().size() and value().size() to
- // get the size of an HpackEntry as defined in 3.3.1.
+ // get the size of an HpackEntry as defined in 5.1.
static const size_t kSizeOverhead;
// Creates an entry. Preconditions:
@@ -68,7 +68,7 @@ class NET_EXPORT_PRIVATE HpackEntry {
// Used to compute the entry's index in the header table.
size_t InsertionIndex() const { return insertion_index_; }
- // Returns the size of an entry as defined in 3.3.1.
+ // Returns the size of an entry as defined in 5.1.
static size_t Size(base::StringPiece name, base::StringPiece value);
size_t Size() const;

Powered by Google App Engine
This is Rietveld 408576698