summaryrefslogtreecommitdiffstats
path: root/net/base/mime_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/mime_util.h')
-rw-r--r--net/base/mime_util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/base/mime_util.h b/net/base/mime_util.h
index 6ae4a55..17620d9 100644
--- a/net/base/mime_util.h
+++ b/net/base/mime_util.h
@@ -6,6 +6,7 @@
#define NET_BASE_MIME_UTIL_H__
#include <string>
+#include <vector>
#include "base/file_path.h"
@@ -45,6 +46,13 @@ bool IsSupportedMimeType(const std::string& mime_type);
bool MatchesMimeType(const std::string &mime_type_pattern,
const std::string &mime_type);
+// Parses a codec string, populating |codecs_out| with the prefix of each codec
+// in the string |codecs_in|. For example, passed "aaa.b.c,dd.eee", |codecs_out|
+// will contain {"aaa", "dd"}.
+// See http://www.ietf.org/rfc/rfc4281.txt.
+void ParseCodecString(const std::string& codecs,
+ std::vector<std::string>* codecs_out);
+
} // namespace net
#endif // NET_BASE_MIME_UTIL_H__