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

Side by Side Diff: media/base/cdm_factory.h

Issue 660673002: Introduce CdmFactory interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_result_promise
Patch Set: comments addressed Created 6 years, 2 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
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/cdm_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 MEDIA_BASE_CDM_FACTORY_H_
6 #define MEDIA_BASE_CDM_FACTORY_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "media/base/media_export.h"
12 #include "media/base/media_keys.h"
13
14 class GURL;
15
16 namespace media {
17
18 class MEDIA_EXPORT CdmFactory {
19 public:
20 CdmFactory();
21 virtual ~CdmFactory();
22
23 virtual scoped_ptr<MediaKeys> Create(
24 const std::string& key_system,
25 const GURL& security_origin,
26 #if defined(ENABLE_BROWSER_CDMS)
27 int* cdm_id, // Output parameter indicating the CDM ID of the MediaKeys.
28 #endif
29 const SessionMessageCB& session_message_cb,
30 const SessionReadyCB& session_ready_cb,
31 const SessionClosedCB& session_closed_cb,
32 const SessionErrorCB& session_error_cb,
33 const SessionKeysChangeCB& session_keys_change_cb,
34 const SessionExpirationUpdateCB& session_expiration_update_cb) = 0;
35
36 private:
37 DISALLOW_COPY_AND_ASSIGN(CdmFactory);
38 };
39
40 } // namespace media
41
42 #endif // MEDIA_BASE_CDM_FACTORY_H_
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | media/base/cdm_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698