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

Unified Diff: Source/platform/drm/ContentDecryptionModule.h

Issue 183943003: Verify MediaKeys parameter values consistently (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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: Source/platform/drm/ContentDecryptionModule.h
diff --git a/Source/platform/drm/ContentDecryptionModule.h b/Source/platform/drm/ContentDecryptionModule.h
index 0ff3890549f35ab5e19c7f8818a30d9cc1c67000..99e496db5abfe0ebad116742054d967ae28dd208 100644
--- a/Source/platform/drm/ContentDecryptionModule.h
+++ b/Source/platform/drm/ContentDecryptionModule.h
@@ -45,14 +45,12 @@ class ContentDecryptionModuleSessionClient;
class PLATFORM_EXPORT ContentDecryptionModule {
WTF_MAKE_NONCOPYABLE(ContentDecryptionModule);
public:
- static bool supportsKeySystem(const String&);
static PassOwnPtr<ContentDecryptionModule> create(const String& keySystem);
ContentDecryptionModule(PassOwnPtr<blink::WebContentDecryptionModule>);
~ContentDecryptionModule();
// ContentDecryptionModule
- bool supportsMIMEType(const String&);
PassOwnPtr<ContentDecryptionModuleSession> createSession(ContentDecryptionModuleSessionClient*);
blink::WebContentDecryptionModule* contentDecryptionModule() { return m_cdm.get(); }

Powered by Google App Engine
This is Rietveld 408576698