OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // BrotliFilter applies Brotli content decoding to a data |
| 6 // stream. Brotli format specification: |
| 7 // http://www.ietf.org/id/draft-alakuijala-brotli |
| 8 // |
| 9 // BrotliFilter is a subclass of Filter. See the latter's header file filter.h |
| 10 // for sample usage. |
| 11 |
| 12 #ifndef NET_FILTER_BROTLI_FILTER_H_ |
| 13 #define NET_FILTER_BROTLI_FILTER_H_ |
| 14 |
| 15 #include "net/filter/filter.h" |
| 16 |
| 17 namespace net { |
| 18 |
| 19 Filter* CreateBrotliFilter(Filter::FilterType type_id, int buffer_size); |
| 20 |
| 21 } // namespace net |
| 22 |
| 23 #endif // NET_FILTER_BROTLI_FILTER_H__ |
OLD | NEW |