// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_FILTER_GZIP_SOURCE_STREAM_H_ #define NET_FILTER_GZIP_SOURCE_STREAM_H_ #include <memory> #include <string> #include "net/base/net_export.h" #include "net/filter/filter_source_stream.h" #include "net/filter/gzip_header.h" z_stream; namespace net { class IOBuffer; // GZipSourceStream applies gzip and deflate content encoding/decoding to a data // stream. As specified by HTTP 1.1, with gzip encoding the content is // wrapped with a gzip header, and with deflate encoding the content is in // a raw, headerless DEFLATE stream. // // Internally GZipSourceStream uses zlib inflate to do decoding. // class NET_EXPORT_PRIVATE GzipSourceStream : public FilterSourceStream { … }; } // namespace net #endif // NET_FILTER_GZIP_SOURCE_STREAM_H__