| Index: net/filter/brotli_stream_source.h | 
| diff --git a/net/filter/brotli_stream_source.h b/net/filter/brotli_stream_source.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..987a46cbea5c52785aa9bfd6477439d5fe7e489a | 
| --- /dev/null | 
| +++ b/net/filter/brotli_stream_source.h | 
| @@ -0,0 +1,21 @@ | 
| +// Copyright 2016 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#ifndef NET_FILTER_BROTLI_STREAM_SOURCE_H_ | 
| +#define NET_FILTER_BROTLI_STREAM_SOURCE_H_ | 
| + | 
| +#include <memory> | 
| + | 
| +#include "net/base/net_export.h" | 
| +#include "net/filter/filter_stream_source.h" | 
| +#include "net/filter/stream_source.h" | 
| + | 
| +namespace net { | 
| + | 
| +NET_EXPORT_PRIVATE std::unique_ptr<FilterStreamSource> CreateBrotliStreamSource( | 
| +    std::unique_ptr<StreamSource> previous); | 
| + | 
| +}  // namespace net | 
| + | 
| +#endif  // NET_FILTER_BROTLI_STREAM_SOURCE_H_ | 
|  |