Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_RENDERER_MEDIA_RENDERER_WEBCONTENTDECRYPTIONMODULE_IMPL_H_ | |
| 6 #define CONTENT_RENDERER_MEDIA_RENDERER_WEBCONTENTDECRYPTIONMODULE_IMPL_H_ | |
| 7 | |
| 8 #include "base/string16.h" | |
| 9 #include "third_party/WebKit/public/platform/WebContentDecryptionModule.h" | |
| 10 | |
| 11 namespace content { | |
| 12 | |
| 13 class RendererWebContentDecryptionModuleImpl | |
|
scherkus (not reviewing)
2013/06/12 00:48:44
if we have the "Renderer" prefix do we really need
jamesr
2013/06/12 20:40:49
why "Renderer"? is there any possible implementati
ddorwin
2013/06/12 21:13:00
Done.
| |
| 14 : public WebKit::WebContentDecryptionModule { | |
| 15 public: | |
| 16 static RendererWebContentDecryptionModuleImpl* create( | |
| 17 const string16& key_system); | |
| 18 | |
| 19 virtual ~RendererWebContentDecryptionModuleImpl(); | |
| 20 | |
| 21 // WebKit::WebContentDecryptionModule implementation. | |
| 22 virtual WebKit::WebContentDecryptionModuleSession* createSession( | |
| 23 WebKit::WebContentDecryptionModuleSession::Client*); | |
| 24 | |
| 25 private: | |
| 26 RendererWebContentDecryptionModuleImpl(const string16& key_system); | |
| 27 | |
| 28 DISALLOW_COPY_AND_ASSIGN(RendererWebContentDecryptionModuleImpl); | |
| 29 }; | |
| 30 | |
| 31 } // namespace content | |
| 32 | |
| 33 #endif // CONTENT_RENDERER_MEDIA_RENDERER_WEBCONTENTDECRYPTIONMODULE_IMPL_H_ | |
| OLD | NEW |