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

Unified Diff: public/platform/Platform.h

Issue 16387015: Make unprefixed EME APIs use platform and Chromium. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: "unsigned" -> "size_t" for lengths 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
Index: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index acff9862dc1663b4f3cc6a0b73606bc332a52457..6a1522fa25790fa728df884c82f61f58e56fc920 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;
@@ -143,6 +144,8 @@ public:
virtual WebAudioDevice* createAudioDevice(size_t bufferSize, unsigned numberOfChannels, double sampleRate, WebAudioDevice::RenderCallback*) { return 0; }
virtual WebAudioDevice* createAudioDevice(size_t bufferSize, unsigned numberOfInputChannels, unsigned numberOfChannels, double sampleRate, WebAudioDevice::RenderCallback*) { return 0; }
+ // May return null.
+ virtual WebContentDecryptionModule* createContentDecryptionModule(const WebString& keySystem) { return 0; }
abarth-chromium 2013/06/12 23:03:51 Please maintain two blank lines between sections.
ddorwin 2013/06/12 23:55:54 Done.
// Blob ----------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698