// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_DOWNLOAD_PUBLIC_COMMON_INPUT_STREAM_H_ #define COMPONENTS_DOWNLOAD_PUBLIC_COMMON_INPUT_STREAM_H_ #include "components/download/public/common/download_export.h" #include "components/download/public/common/download_interrupt_reasons.h" #include "mojo/public/cpp/system/simple_watcher.h" #include "net/base/io_buffer.h" namespace download { // Input stream for the download system to read after network response is // received. class COMPONENTS_DOWNLOAD_EXPORT InputStream { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_PUBLIC_COMMON_INPUT_STREAM_H_