OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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_REMOTING_REMOTING_CDM_H_ |
| 6 #define MEDIA_REMOTING_REMOTING_CDM_H_ |
| 7 |
| 8 #include "media/base/cdm_factory.h" |
| 9 #include "media/base/media_keys.h" |
| 10 #include "media/remoting/remoting_cdm_context.h" |
| 11 #include "media/remoting/remoting_cdm_controller.h" |
| 12 |
| 13 namespace media { |
| 14 |
| 15 // TODO(xjz): Merge this with erickung's implementation. |
| 16 class RemotingCdm : public MediaKeys { |
| 17 public: |
| 18 RemotingCdm(const std::string& key_system, |
| 19 const GURL& security_origin, |
| 20 const CdmConfig& cdm_config, |
| 21 const SessionMessageCB& session_message_cb, |
| 22 const SessionClosedCB& session_closed_cb, |
| 23 const SessionKeysChangeCB& session_keys_change_cb, |
| 24 const SessionExpirationUpdateCB& session_expiration_update_cb, |
| 25 const CdmCreatedCB& cdm_created_cb, |
| 26 std::unique_ptr<RemotingCdmController> remoting_cdm_controller); |
| 27 |
| 28 // MediaKeys implementations. |
| 29 void SetServerCertificate(const std::vector<uint8_t>& certificate, |
| 30 std::unique_ptr<SimpleCdmPromise> promise) override; |
| 31 void CreateSessionAndGenerateRequest( |
| 32 SessionType session_type, |
| 33 EmeInitDataType init_data_type, |
| 34 const std::vector<uint8_t>& init_data, |
| 35 std::unique_ptr<NewSessionCdmPromise> promise) override; |
| 36 void LoadSession(SessionType session_type, |
| 37 const std::string& session_id, |
| 38 std::unique_ptr<NewSessionCdmPromise> promise) override; |
| 39 void UpdateSession(const std::string& session_id, |
| 40 const std::vector<uint8_t>& response, |
| 41 std::unique_ptr<SimpleCdmPromise> promise) override; |
| 42 void CloseSession(const std::string& session_id, |
| 43 std::unique_ptr<SimpleCdmPromise> promise) override; |
| 44 void RemoveSession(const std::string& session_id, |
| 45 std::unique_ptr<SimpleCdmPromise> promise) override; |
| 46 CdmContext* GetCdmContext() override; |
| 47 |
| 48 RemotingSourceImpl* GetRemotingSource(); |
| 49 |
| 50 private: |
| 51 ~RemotingCdm() override; |
| 52 |
| 53 const std::unique_ptr<RemotingCdmController> remoting_cdm_controller_; |
| 54 RemotingCdmContext remoting_cdm_context_; |
| 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(RemotingCdm); |
| 57 }; |
| 58 |
| 59 } // namespace media |
| 60 |
| 61 #endif // MEDIA_REMOTING_REMOTING_CDM_H_ |
OLD | NEW |