// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_FILTER_SOURCE_STREAM_H_ #define NET_FILTER_SOURCE_STREAM_H_ #include <string> #include "base/functional/callback.h" #include "net/base/completion_once_callback.h" #include "net/base/net_errors.h" #include "net/base/net_export.h" namespace net { class IOBuffer; // The SourceStream class implements a producer of bytes. class NET_EXPORT_PRIVATE SourceStream { … }; } // namespace net #endif // NET_FILTER_SOURCE_STREAM_H_