| Index: net/base/mime_util.h
|
| diff --git a/net/base/mime_util.h b/net/base/mime_util.h
|
| index 9662e9656e397de2d48adedbfae590a3249ff4a7..c9b6415e7696dc83cde4b6df42c2a9975158224d 100644
|
| --- a/net/base/mime_util.h
|
| +++ b/net/base/mime_util.h
|
| @@ -108,13 +108,13 @@ NET_EXPORT const std::string GetIANAMediaType(const std::string& mime_type);
|
|
|
| // A list of supported certificate-related mime types.
|
| enum CertificateMimeType {
|
| -#define CERTIFICATE_MIME_TYPE(name, value) CERTIFICATE_MIME_TYPE_ ## name = value,
|
| +#define CERTIFICATE_MIME_TYPE(name, value) CERTIFICATE_MIME_TYPE_##name = value,
|
| #include "net/base/mime_util_certificate_type_list.h"
|
| #undef CERTIFICATE_MIME_TYPE
|
| };
|
|
|
| -NET_EXPORT CertificateMimeType GetCertificateMimeTypeForMimeType(
|
| - const std::string& mime_type);
|
| +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,
|
|
|