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. | |
|
Ryan Sleevi
2015/12/28 19:30:53
It seems like lines 5-10 belong as class-level doc
eustas
2015/12/29 13:15:39
Surely.
| |
| 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); | |
|
Ryan Sleevi
2015/12/28 19:30:53
Document?
eustas
2015/12/29 13:15:39
Done.
| |
| 20 | |
| 21 } // namespace net | |
| 22 | |
| 23 #endif // NET_FILTER_BROTLI_FILTER_H__ | |
| OLD | NEW |