diff options
| author | 2010-11-02 14:45:02 -0700 | |
|---|---|---|
| committer | 2010-11-02 14:45:02 -0700 | |
| commit | ef8a810b3b11d177a64111125eaa44bb76624414 (patch) | |
| tree | 4446258072c22ab91986c4a397b6cb99c87284c8 /drm/common/DrmEngineBase.cpp | |
| parent | bbd212d77852be155a815a0d2ad1da0df2c0dfe1 (diff) | |
| parent | c7b3ccc564448cb4b918728421f9402bc18278c5 (diff) | |
Merge "Update of DRM framework"
Diffstat (limited to 'drm/common/DrmEngineBase.cpp')
| -rw-r--r-- | drm/common/DrmEngineBase.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drm/common/DrmEngineBase.cpp b/drm/common/DrmEngineBase.cpp index 17cdf5447482..10c64ee45441 100644 --- a/drm/common/DrmEngineBase.cpp +++ b/drm/common/DrmEngineBase.cpp @@ -120,6 +120,11 @@ status_t DrmEngineBase::openDecryptSession( return onOpenDecryptSession(uniqueId, decryptHandle, fd, offset, length); } +status_t DrmEngineBase::openDecryptSession( + int uniqueId, DecryptHandle* decryptHandle, const char* uri) { + return onOpenDecryptSession(uniqueId, decryptHandle, uri); +} + status_t DrmEngineBase::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) { return onCloseDecryptSession(uniqueId, decryptHandle); } |