// 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_BYTES_ELEMENT_READER_H_ #define NET_BASE_UPLOAD_BYTES_ELEMENT_READER_H_ #include <stdint.h> #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/containers/span.h" #include "net/base/net_export.h" #include "net/base/upload_element_reader.h" namespace net { // An UploadElementReader implementation for bytes. The caller owns |bytes|, // and is responsible for ensuring it outlives the UploadBytesElementReader. class NET_EXPORT UploadBytesElementReader : public UploadElementReader { … }; // A subclass of UplodBytesElementReader which owns the data given as a vector. class NET_EXPORT UploadOwnedBytesElementReader : public UploadBytesElementReader { … }; } // namespace net #endif // NET_BASE_UPLOAD_BYTES_ELEMENT_READER_H_