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

Side by Side Diff: content/renderer/media/renderer_webcontentdecryptionmodule_impl.h

Issue 16583004: Add Stubbed implementation of WebCDM* interfaces for unprefixed EME APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review feedback 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698