| Index: net/spdy/hpack_encoder_test.cc
|
| diff --git a/net/spdy/hpack_encoder_test.cc b/net/spdy/hpack_encoder_test.cc
|
| index 50a6c86c9d966832a439326e0ff7cf01b89518bf..7bf37de2c194633a8d43e3c0b5a985494b6984af 100644
|
| --- a/net/spdy/hpack_encoder_test.cc
|
| +++ b/net/spdy/hpack_encoder_test.cc
|
| @@ -45,9 +45,6 @@ class HpackEncoderPeer {
|
| HpackHeaderTablePeer table_peer() {
|
| return HpackHeaderTablePeer(table());
|
| }
|
| - bool allow_huffman_compression() {
|
| - return encoder_->allow_huffman_compression_;
|
| - }
|
| void set_allow_huffman_compression(bool allow) {
|
| encoder_->allow_huffman_compression_ = allow;
|
| }
|
| @@ -153,9 +150,6 @@ class HpackEncoderTest : public ::testing::Test {
|
| EXPECT_TRUE(encoder_.EncodeHeaderSet(header_set, &actual_out));
|
| EXPECT_EQ(expected_out, actual_out);
|
| }
|
| - size_t IndexOf(HpackEntry* entry) {
|
| - return peer_.table()->IndexOf(entry);
|
| - }
|
| size_t IndexOf(const HpackEntry* entry) {
|
| return peer_.table()->IndexOf(entry);
|
| }
|
|
|