OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ | 5 #ifndef MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ |
6 #define MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ | 6 #define MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "media/base/cdm_factory.h" | 9 #include "media/base/cdm_factory.h" |
10 | 10 |
11 namespace media { | 11 namespace media { |
12 | 12 |
13 class DefaultCdmFactory : public CdmFactory { | 13 class DefaultCdmFactory : public CdmFactory { |
14 public: | 14 public: |
15 DefaultCdmFactory(); | 15 DefaultCdmFactory(); |
16 ~DefaultCdmFactory() final; | 16 ~DefaultCdmFactory() final; |
17 | 17 |
18 // CdmFactory implementation. | 18 // CdmFactory implementation. |
19 scoped_ptr<MediaKeys> Create( | 19 void Create(const std::string& key_system, |
20 const std::string& key_system, | 20 bool allow_distinctive_identifier, |
21 bool allow_distinctive_identifier, | 21 bool allow_persistent_state, |
22 bool allow_persistent_state, | 22 const GURL& security_origin, |
23 const GURL& security_origin, | 23 const SessionMessageCB& session_message_cb, |
24 const SessionMessageCB& session_message_cb, | 24 const SessionClosedCB& session_closed_cb, |
25 const SessionClosedCB& session_closed_cb, | 25 const LegacySessionErrorCB& legacy_session_error_cb, |
26 const LegacySessionErrorCB& legacy_session_error_cb, | 26 const SessionKeysChangeCB& session_keys_change_cb, |
27 const SessionKeysChangeCB& session_keys_change_cb, | 27 const SessionExpirationUpdateCB& session_expiration_update_cb, |
28 const SessionExpirationUpdateCB& session_expiration_update_cb) final; | 28 const CdmCreatedCB& cdm_created_cb) final; |
29 | 29 |
30 private: | 30 private: |
31 DISALLOW_COPY_AND_ASSIGN(DefaultCdmFactory); | 31 DISALLOW_COPY_AND_ASSIGN(DefaultCdmFactory); |
32 }; | 32 }; |
33 | 33 |
34 } // namespace media | 34 } // namespace media |
35 | 35 |
36 #endif // MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ | 36 #endif // MEDIA_CDM_DEFAULT_CDM_FACTORY_H_ |
OLD | NEW |