Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: webkit/media/mime_util.h

Issue 10020053: Initial implementation of Encrypted Media Extensions in Chrome. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Use new enum names from http://webk.it/84046. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/media/mime_util.h
diff --git a/webkit/media/mime_util.h b/webkit/media/mime_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..8563dd7fe203dce7fc37bab7f0757ce36558b1ae
--- /dev/null
+++ b/webkit/media/mime_util.h
@@ -0,0 +1,34 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WEBKIT_MEDIA_MIME_UTIL_H_
+#define WEBKIT_MEDIA_MIME_UTIL_H_
+
+#include <string>
+#include <vector>
+
+namespace WebKit {
+class WebString;
+}
+
+namespace webkit_media {
+
+namespace mime_util {
darin (slow to review) 2012/04/17 22:41:54 I think it would be better to make a more specific
ddorwin 2012/04/17 23:25:37 Done.
+
+// Returns whether |key_sytem| is supported at all.
+// Call IsSupportedKeySystemWithMediaMimeType() to determine whether a
+// |key_system| supports a specific type of media.
+bool isKeySystemSupported(const WebKit::WebString& key_system);
+
+// Returns whether |key_sytem| supports the specified media type and codec(s).
+bool IsSupportedKeySystemWithMediaMimeType(
+ const std::string& mime_type,
+ const std::vector<std::string>& codecs,
+ const std::string& key_system);
+
+} // namespace mime_util
+
+} // namespace webkit_media
+
+#endif // WEBKIT_MEDIA_MIME_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698