| Index: net/spdy/hpack_input_stream.h
|
| diff --git a/net/spdy/hpack_input_stream.h b/net/spdy/hpack_input_stream.h
|
| index 058a4b4286a741f6cbd67a5099c7d22166202f91..8164ee6d9429370955b805168c96265450247d10 100644
|
| --- a/net/spdy/hpack_input_stream.h
|
| +++ b/net/spdy/hpack_input_stream.h
|
| @@ -60,13 +60,9 @@ class NET_EXPORT_PRIVATE HpackInputStream {
|
|
|
| // Accessors for testing.
|
|
|
| - void SetBitOffsetForTest(size_t bit_offset) {
|
| - bit_offset_ = bit_offset;
|
| - }
|
| + void SetBitOffsetForTest(size_t bit_offset) { bit_offset_ = bit_offset; }
|
|
|
| - bool DecodeNextUint32ForTest(uint32* I) {
|
| - return DecodeNextUint32(I);
|
| - }
|
| + bool DecodeNextUint32ForTest(uint32* I) { return DecodeNextUint32(I); }
|
|
|
| private:
|
| const uint32 max_string_literal_size_;
|
|
|