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

Unified Diff: public/platform/Platform.h

Issue 16841007: Add platform APIs for the unprefixed EME APIs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: return sessionId by value Created 7 years, 6 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
« no previous file with comments | « no previous file | public/platform/WebContentDecryptionModule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index acff9862dc1663b4f3cc6a0b73606bc332a52457..853116013f5e8a81bf27d4538773d980c6ab9dca 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -51,6 +51,7 @@ namespace WebKit {
class WebAudioBus;
class WebBlobRegistry;
+class WebContentDecryptionModule;
class WebClipboard;
class WebCompositorSupport;
class WebCookieJar;
@@ -129,6 +130,13 @@ public:
// May return null.
virtual WebSpeechSynthesizer* createSpeechSynthesizer(WebSpeechSynthesizerClient*) { return 0; }
+
+ // Media --------------------------------------------------------------
+
+ // May return null.
+ virtual WebContentDecryptionModule* createContentDecryptionModule(const WebString& keySystem) { return 0; }
+
+
// Audio --------------------------------------------------------------
virtual double audioHardwareSampleRate() { return 0; }
« no previous file with comments | « no previous file | public/platform/WebContentDecryptionModule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698