diff options
author | James Dong <jdong@google.com> | 2012-07-30 17:57:39 -0700 |
---|---|---|
committer | James Dong <jdong@google.com> | 2012-08-10 17:38:19 -0700 |
commit | bf5b3b29e31b293313788d7464cfb258ac0da803 (patch) | |
tree | 1e3e016a1f7268688be59047be835a17609977f8 /include/drm/DrmManagerClient.h | |
parent | b3e12a4d15a329821979bf287c49a9630486e23f (diff) | |
download | frameworks_av-bf5b3b29e31b293313788d7464cfb258ac0da803.zip frameworks_av-bf5b3b29e31b293313788d7464cfb258ac0da803.tar.gz frameworks_av-bf5b3b29e31b293313788d7464cfb258ac0da803.tar.bz2 |
Let getOriginalMimeType() take a fd passed from drm java applications
This patch enables the drm framework to avoid opening files directly.
As a result, the drm framework no longer needs the sdcard read permision.
o related-to-bug: 6426185
Change-Id: Ib176c35ef4b1a1a405e8e954f19a7985266f2510
Diffstat (limited to 'include/drm/DrmManagerClient.h')
-rw-r--r-- | include/drm/DrmManagerClient.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/DrmManagerClient.h b/include/drm/DrmManagerClient.h index a5c6992..866edac 100644 --- a/include/drm/DrmManagerClient.h +++ b/include/drm/DrmManagerClient.h @@ -279,10 +279,11 @@ public: * Retrieves the mime type embedded inside the original content * * @param[in] path the path of the protected content + * @param[in] fd the file descriptor of the protected content * @return String8 * Returns mime-type of the original content, such as "video/mpeg" */ - String8 getOriginalMimeType(const String8& path); + String8 getOriginalMimeType(const String8& path, int fd); /** * Retrieves the type of the protected object (content, rights, etc..) |