Roll src/third_party/WebKit a3c1667:86dee58 (svn 202524:202526)
[chromium-blink-merge.git] / components / mime_util / mime_util.h
blobbea3c5371d68df59cc0df2c195bc30ce47806d3d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_MIME_UTIL_MIME_UTIL_H__
6 #define COMPONENTS_MIME_UTIL_MIME_UTIL_H__
8 #include <string>
10 #include "net/base/mime_util.h"
12 namespace mime_util {
14 // Check to see if a particular MIME type is in the list of
15 // supported/recognized MIME types.
16 bool IsSupportedImageMimeType(const std::string& mime_type);
17 bool IsSupportedNonImageMimeType(const std::string& mime_type);
18 bool IsUnsupportedTextMimeType(const std::string& mime_type);
19 bool IsSupportedJavascriptMimeType(const std::string& mime_type);
20 bool IsSupportedCertificateMimeType(const std::string& mime_type);
22 // Convenience function.
23 bool IsSupportedMimeType(const std::string& mime_type);
25 net::CertificateMimeType GetCertificateMimeTypeForMimeType(
26 const std::string& mime_type);
28 } // namespace mime_util
30 #endif // COMPONENTS_MIME_UTIL_MIME_UTIL_H__