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_WEBCDM_IMPL_H_ | |
| 6 #define CONTENT_RENDERER_MEDIA_RENDERER_WEBCDM_IMPL_H_ | |
| 7 | |
| 8 #include "base/string16.h" | |
| 9 #include "third_party/WebKit/public/platform/WebCDM.h" | |
| 10 | |
| 11 namespace content { | |
| 12 | |
| 13 class MIDIMessageFilter; | |
|
scherkus (not reviewing)
2013/06/07 18:07:47
lol
ddorwin
2013/06/10 22:53:01
Done.
| |
| 14 | |
| 15 class RendererWebCDMImpl : public WebKit::WebCDM { | |
| 16 public: | |
| 17 static RendererWebCDMImpl* create(const string16& keySystem); | |
|
scherkus (not reviewing)
2013/06/07 18:07:47
unix_hacker var names
ddorwin
2013/06/10 22:53:01
Done. copypasta.
| |
| 18 | |
| 19 virtual ~RendererWebCDMImpl(); | |
| 20 | |
| 21 // WebKit::WebCDM | |
|
scherkus (not reviewing)
2013/06/07 18:07:47
nit: "WebKit::WebCDM implementation."
ddorwin
2013/06/10 22:53:01
Done.
| |
| 22 virtual WebKit::WebCDMSession* createSession(WebKit::WebCDMSession::Client*); | |
| 23 | |
| 24 private: | |
| 25 RendererWebCDMImpl(const string16& keySystem); | |
|
scherkus (not reviewing)
2013/06/07 18:07:47
indent
ddorwin
2013/06/10 22:53:01
Done.
| |
| 26 | |
| 27 DISALLOW_COPY_AND_ASSIGN(RendererWebCDMImpl); | |
| 28 }; | |
| 29 | |
| 30 } // namespace content | |
| 31 | |
| 32 #endif // CONTENT_RENDERER_MEDIA_RENDERER_WEBCDM_IMPL_H_ | |
| OLD | NEW |