| Index: net/spdy/hpack_header_table.h
|
| diff --git a/net/spdy/hpack_header_table.h b/net/spdy/hpack_header_table.h
|
| index 0e0a01ba2637139ffde6ac45eae9a1aeb92222a3..580eaee4979ce9ce18493387523537234b49da13 100644
|
| --- a/net/spdy/hpack_header_table.h
|
| +++ b/net/spdy/hpack_header_table.h
|
| @@ -48,9 +48,7 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
|
| size_t size() const { return size_; }
|
| size_t max_size() const { return max_size_; }
|
|
|
| - const HpackEntry::OrderedSet& reference_set() {
|
| - return reference_set_;
|
| - }
|
| + const HpackEntry::OrderedSet& reference_set() { return reference_set_; }
|
|
|
| // Returns the entry matching the index, or NULL.
|
| HpackEntry* GetByIndex(size_t index);
|
| @@ -73,7 +71,8 @@ class NET_EXPORT_PRIVATE HpackHeaderTable {
|
| // Determine the set of entries which would be evicted by the insertion
|
| // of |name| & |value| into the table, as per section 3.3.3. No eviction
|
| // actually occurs. The set is returned via range [begin_out, end_out).
|
| - void EvictionSet(base::StringPiece name, base::StringPiece value,
|
| + void EvictionSet(base::StringPiece name,
|
| + base::StringPiece value,
|
| EntryTable::iterator* begin_out,
|
| EntryTable::iterator* end_out);
|
|
|
|
|