Chromium Code Reviews| 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 ---------------------------------------------------------------- |