| Index: net/base/mime_util.h
|
| diff --git a/net/base/mime_util.h b/net/base/mime_util.h
|
| index 24dca3def6e928d98d46b1b3a1d15c8a450fe0c4..0284362ebba25dc2969946c6d741f65182448e25 100644
|
| --- a/net/base/mime_util.h
|
| +++ b/net/base/mime_util.h
|
| @@ -121,9 +121,9 @@ enum SupportsType {
|
| // * Returns IsNotSupported if either the |mime_type| is not supported or the
|
| // |mime_type| is supported but at least one of the codecs within |codecs| is
|
| // not supported for the |mime_type|.
|
| -NET_EXPORT SupportsType IsSupportedStrictMediaMimeType(
|
| - const std::string& mime_type,
|
| - const std::vector<std::string>& codecs);
|
| +NET_EXPORT SupportsType
|
| +IsSupportedStrictMediaMimeType(const std::string& mime_type,
|
| + const std::vector<std::string>& codecs);
|
|
|
| // Get the extensions associated with the given mime type. This should be passed
|
| // in lower case. There could be multiple extensions for a given mime type, like
|
| @@ -157,8 +157,8 @@ enum CertificateMimeType {
|
| CERTIFICATE_MIME_TYPE_PKCS12_ARCHIVE,
|
| };
|
|
|
| -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,
|
|
|