mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
24 lines
841 B
C++
24 lines
841 B
C++
// 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_TOOLS_CONTENT_DECODER_TOOL_CONTENT_DECODER_TOOL_H_
|
|
#define NET_TOOLS_CONTENT_DECODER_TOOL_CONTENT_DECODER_TOOL_H_
|
|
|
|
#include <ostream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace net {
|
|
|
|
// Processes input from |input_stream| and writes result to |output_stream|.
|
|
// The input will be decoded with |content_encodings|. If processing is
|
|
// successful, return true.
|
|
bool ContentDecoderToolProcessInput(std::vector<std::string> content_encodings,
|
|
std::istream* input_stream,
|
|
std::ostream* output_stream);
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_TOOLS_CONTENT_DECODER_TOOL_CONTENT_DECODER_TOOL_H_
|