| Index: net/filter/gzip_filter.cc
|
| diff --git a/net/filter/gzip_filter.cc b/net/filter/gzip_filter.cc
|
| index 36fe01cb1cecd81808b604819a8d80fe5049a4d4..6d15ee98f1ad8195f6b40ebc1851c6ee82d69ed2 100644
|
| --- a/net/filter/gzip_filter.cc
|
| +++ b/net/filter/gzip_filter.cc
|
| @@ -10,8 +10,9 @@
|
|
|
| namespace net {
|
|
|
| -GZipFilter::GZipFilter()
|
| - : decoding_status_(DECODING_UNINITIALIZED),
|
| +GZipFilter::GZipFilter(FilterType type)
|
| + : Filter(type),
|
| + decoding_status_(DECODING_UNINITIALIZED),
|
| decoding_mode_(DECODE_MODE_UNKNOWN),
|
| gzip_header_status_(GZIP_CHECK_HEADER_IN_PROGRESS),
|
| zlib_header_added_(false),
|
|
|