diff options
author | Gloria Wang <gwang@google.com> | 2011-03-15 10:52:28 -0700 |
---|---|---|
committer | Gloria Wang <gwang@google.com> | 2011-03-15 11:17:22 -0700 |
commit | 5c96c65f692f8c2297d213c88450dd601d2b5c1f (patch) | |
tree | feacc3cf000a8c991d5759a5e1c4ed2db301c995 /drm/java/android | |
parent | 6f3a75e13b86a3f40fe34e3ebd17b118791a73a4 (diff) | |
download | frameworks_base-5c96c65f692f8c2297d213c88450dd601d2b5c1f.zip frameworks_base-5c96c65f692f8c2297d213c88450dd601d2b5c1f.tar.gz frameworks_base-5c96c65f692f8c2297d213c88450dd601d2b5c1f.tar.bz2 |
Bug fixes of DRM framework.
- Add death listener to clean-up drmserver appropriately
when drmserver died.
- Remove "static" declaration of mUniqueIdVector because it was not
needed to be static variable.
- Remove "class DrmContentIds;" because the class does not exist.
- contentPath in saveRights() could be empty because
it is not required by some DRM schemes.
- Fix naming convention to use sXXX for static variables.
- Fix typo
Change-Id: I7d440488fc074c200f1009d1bafafeffebd690b2
Diffstat (limited to 'drm/java/android')
-rw-r--r-- | drm/java/android/drm/DrmInfoRequest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drm/java/android/drm/DrmInfoRequest.java b/drm/java/android/drm/DrmInfoRequest.java index a5a799c..366a342 100644 --- a/drm/java/android/drm/DrmInfoRequest.java +++ b/drm/java/android/drm/DrmInfoRequest.java @@ -28,7 +28,7 @@ import java.util.Iterator; * */ public class DrmInfoRequest { - // Changes in following constants should be in sync with DrmInfoRequest.cpp + // Changes in following constants should be in sync with DrmInfoRequest.h /** * Constants defines the type of {@link DrmInfoRequest} */ |