Import chromium-64.0.3282.140

This commit is contained in:
klzgrad
2018-02-02 05:49:39 -05:00
commit 86b64329f6
19589 changed files with 4029211 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// 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_