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

Unified Diff: net/spdy/hpack_header_table.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_header_table.h
diff --git a/net/spdy/hpack_header_table.h b/net/spdy/hpack_header_table.h
index 5f70b5bab646a03b5a39abdb601f9a4721ed0a96..7e543337dfb6bed5e8f1621669b53000542d870f 100644
--- a/net/spdy/hpack_header_table.h
+++ b/net/spdy/hpack_header_table.h
@@ -15,7 +15,7 @@
#include "net/spdy/hpack_entry.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 {
@@ -23,8 +23,8 @@ namespace test {
class HpackHeaderTablePeer;
} // namespace test
-// A data structure for both the header table (described in 3.1.2) and
-// the reference set (3.1.3).
+// A data structure for both the header table (described in 3.2) and
+// the reference set (3.3).
class NET_EXPORT_PRIVATE HpackHeaderTable {
public:
friend class test::HpackHeaderTablePeer;
@@ -59,7 +59,7 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
size_t settings_size_bound() { return settings_size_bound_; }
// Current and maximum estimated byte size of the table, as described in
- // 3.3.1. Notably, this is /not/ the number of entries in the table.
+ // 5.1. Notably, this is /not/ the number of entries in the table.
size_t size() const { return size_; }
size_t max_size() const { return max_size_; }
@@ -81,7 +81,7 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
size_t IndexOf(const HpackEntry* entry) const;
// Sets the maximum size of the header table, evicting entries if
- // necessary as described in 3.3.2.
+ // necessary as described in 5.2.
void SetMaxSize(size_t max_size);
// Sets the SETTINGS_HEADER_TABLE_SIZE bound of the table. Will call

Powered by Google App Engine
This is Rietveld 408576698