// Copyright 2012 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_BASE_UPLOAD_DATA_STREAM_H_ #define NET_BASE_UPLOAD_DATA_STREAM_H_ #include <stdint.h> #include <memory> #include <vector> #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" #include "net/base/upload_progress.h" #include "net/log/net_log_with_source.h" namespace net { class IOBuffer; class UploadElementReader; // A class for retrieving all data to be sent as a request body. Supports both // chunked and non-chunked uploads. class NET_EXPORT UploadDataStream { … }; } // namespace net #endif // NET_BASE_UPLOAD_DATA_STREAM_H_