Chromium Code Reviews| 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/base/net_export.h" | |
|
xunjieli
2015/12/02 18:26:30
nit: this is not used.
eustas
2015/12/03 12:32:06
Ooops, removed.
| |
| 16 #include "net/filter/filter.h" | |
| 17 | |
| 18 namespace net { | |
| 19 | |
| 20 Filter* CreateBrotliFilter(Filter::FilterType type_id, int buffer_size); | |
| 21 | |
| 22 } // namespace net | |
| 23 | |
| 24 #endif // NET_FILTER_BROTLI_FILTER_H__ | |
| OLD | NEW |