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

Side by Side Diff: content/renderer/media/renderer_webcdm_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: 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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698