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

Side by Side Diff: net/http/http_features.h

Issue 1431723002: Add brotli content-encoding filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits 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 #ifndef NET_HTTP_HTTP_FEATURES_H_
6 #define NET_HTTP_HTTP_FEATURES_H_
7
8 // This file defines all the base::FeatureList features for the net module.
9
10 #include "base/feature_list.h"
11
12 namespace net {
13
14 namespace features {
15
16 // All features in alphabetical order. The features should be documented
17 // alongside the definition of their values in the .cc file.
18 extern const base::Feature kBrotliEncodingFeature;
19
20 // Checks if brotli encoding feature is enabled and supported.
21 bool IsBrotliEncodingEnabled();
22
23 } // namespace features
24
25 } // namespace net
26
27 #endif // NET_HTTP_HTTP_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698