Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: net/filter/brotli_filter.h

Issue 1431723002: Add brotli content-encoding filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added BrotliSlowRead to u_r_j_unittest Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698