| Index: net/base/mime_util.h
|
| diff --git a/net/base/mime_util.h b/net/base/mime_util.h
|
| index d2638cb3a6d9d4743457b75fedae8f808275d634..fc0999b4feb8ebd34c194070a9a985c32edcdeb3 100644
|
| --- a/net/base/mime_util.h
|
| +++ b/net/base/mime_util.h
|
| @@ -119,6 +119,18 @@ enum CertificateMimeType {
|
| NET_EXPORT CertificateMimeType GetCertificateMimeTypeForMimeType(
|
| const std::string& mime_type);
|
|
|
| +// Prepares one value as part of a multi-part upload request.
|
| +NET_EXPORT void AddMultipartValueForUpload(const std::string& value_name,
|
| + const std::string& value,
|
| + const std::string& mime_boundary,
|
| + const std::string& content_type,
|
| + std::string* post_data);
|
| +
|
| +// Adds the final delimiter to a multi-part upload request.
|
| +NET_EXPORT void AddMultipartFinalDelimiterForUpload(
|
| + const std::string& mime_boundary,
|
| + std::string* post_data);
|
| +
|
| } // namespace net
|
|
|
| #endif // NET_BASE_MIME_UTIL_H__
|
|
|