| Index: net/filter/gzip_filter.h
|
| diff --git a/net/filter/gzip_filter.h b/net/filter/gzip_filter.h
|
| index 07b782141b3211196fad518e16756a41a5b8b862..597c2e7d4a28ee4ce9922eaf723982283ef5eb93 100644
|
| --- a/net/filter/gzip_filter.h
|
| +++ b/net/filter/gzip_filter.h
|
| @@ -27,7 +27,7 @@ class GZipHeader;
|
|
|
| class GZipFilter : public Filter {
|
| public:
|
| - virtual ~GZipFilter();
|
| + ~GZipFilter() override;
|
|
|
| // Initializes filter decoding mode and internal control blocks.
|
| // Parameter filter_type specifies the type of filter, which corresponds to
|
| @@ -48,8 +48,7 @@ class GZipFilter : public Filter {
|
| // stream_buffer_. On the other hand, *dest_len can be 0 upon successful
|
| // return. For example, the internal zlib may process some pre-filter data
|
| // but not produce output yet.
|
| - virtual FilterStatus ReadFilteredData(char* dest_buffer,
|
| - int* dest_len) override;
|
| + FilterStatus ReadFilteredData(char* dest_buffer, int* dest_len) override;
|
|
|
| private:
|
| enum DecodingStatus {
|
|
|