| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 class RenderCdmFactory : public media::CdmFactory { | 26 class RenderCdmFactory : public media::CdmFactory { |
| 27 public: | 27 public: |
| 28 #if defined(ENABLE_PEPPER_CDMS) | 28 #if defined(ENABLE_PEPPER_CDMS) |
| 29 explicit RenderCdmFactory(const CreatePepperCdmCB& create_pepper_cdm_cb); | 29 explicit RenderCdmFactory(const CreatePepperCdmCB& create_pepper_cdm_cb); |
| 30 #elif defined(ENABLE_BROWSER_CDMS) | 30 #elif defined(ENABLE_BROWSER_CDMS) |
| 31 explicit RenderCdmFactory(RendererCdmManager* manager); | 31 explicit RenderCdmFactory(RendererCdmManager* manager); |
| 32 #else | 32 #else |
| 33 RenderCdmFactory(); | 33 RenderCdmFactory(); |
| 34 #endif // defined(ENABLE_PEPPER_CDMS) | 34 #endif // defined(ENABLE_PEPPER_CDMS) |
| 35 | 35 |
| 36 virtual ~RenderCdmFactory(); | 36 ~RenderCdmFactory() override; |
| 37 | 37 |
| 38 virtual scoped_ptr<media::MediaKeys> Create( | 38 scoped_ptr<media::MediaKeys> Create( |
| 39 const std::string& key_system, | 39 const std::string& key_system, |
| 40 const GURL& security_origin, | 40 const GURL& security_origin, |
| 41 const media::SessionMessageCB& session_message_cb, | 41 const media::SessionMessageCB& session_message_cb, |
| 42 const media::SessionReadyCB& session_ready_cb, | 42 const media::SessionReadyCB& session_ready_cb, |
| 43 const media::SessionClosedCB& session_closed_cb, | 43 const media::SessionClosedCB& session_closed_cb, |
| 44 const media::SessionErrorCB& session_error_cb, | 44 const media::SessionErrorCB& session_error_cb, |
| 45 const media::SessionKeysChangeCB& session_keys_change_cb, | 45 const media::SessionKeysChangeCB& session_keys_change_cb, |
| 46 const media::SessionExpirationUpdateCB& session_expiration_update_cb) | 46 const media::SessionExpirationUpdateCB& session_expiration_update_cb) |
| 47 override; | 47 override; |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 #if defined(ENABLE_PEPPER_CDMS) | 50 #if defined(ENABLE_PEPPER_CDMS) |
| 51 CreatePepperCdmCB create_pepper_cdm_cb_; | 51 CreatePepperCdmCB create_pepper_cdm_cb_; |
| 52 #elif defined(ENABLE_BROWSER_CDMS) | 52 #elif defined(ENABLE_BROWSER_CDMS) |
| 53 // The |manager_| is a per render frame object owned by RenderFrameImpl. | 53 // The |manager_| is a per render frame object owned by RenderFrameImpl. |
| 54 RendererCdmManager* manager_; | 54 RendererCdmManager* manager_; |
| 55 #endif | 55 #endif |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(RenderCdmFactory); | 57 DISALLOW_COPY_AND_ASSIGN(RenderCdmFactory); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace content | 60 } // namespace content |
| 61 | 61 |
| 62 #endif // CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ | 62 #endif // CONTENT_RENDERER_MEDIA_CRYPTO_RENDER_CDM_FACTORY_H_ |
| OLD | NEW |