OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 CHROMECAST_MEDIA_CDM_PLAYREADY_DRM_DELEGATE_ANDROID_H_ |
| 6 #define CHROMECAST_MEDIA_CDM_PLAYREADY_DRM_DELEGATE_ANDROID_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "media/base/android/media_drm_bridge_delegate.h" |
| 10 |
| 11 namespace chromecast { |
| 12 namespace media { |
| 13 |
| 14 class PlayreadyDrmDelegateAndroid : public ::media::MediaDrmBridgeDelegate { |
| 15 public: |
| 16 PlayreadyDrmDelegateAndroid(); |
| 17 ~PlayreadyDrmDelegateAndroid() override; |
| 18 |
| 19 private: |
| 20 |
| 21 // ::media::MediaDrmBridgeDelegate implementation: |
| 22 const std::vector<uint8_t> GetUUID() const override; |
| 23 bool OnCreateSession( |
| 24 const ::media::EmeInitDataType init_data_type, |
| 25 const uint8_t* init_data, |
| 26 int init_data_length, |
| 27 std::vector<uint8_t>& init_data_out, |
| 28 std::vector<std::string>& optional_parameters_out) override; |
| 29 |
| 30 private: |
| 31 DISALLOW_COPY_AND_ASSIGN(PlayreadyDrmDelegateAndroid); |
| 32 }; |
| 33 |
| 34 } // namespace media |
| 35 } // namespace chromecast |
| 36 |
| 37 #endif // CHROMECAST_MEDIA_CDM_PLAYREADY_DRM_DELEGATE_ANDROID_H_ |
OLD | NEW |