summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorGloria Wang <gwang@google.com>2011-03-14 17:36:42 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-03-14 17:36:42 -0700
commit67718e076422f8f28f4e30a39df9e462ef32d19b (patch)
tree71f36123951a3ffd0528f39321494471778e62e1 /include/drm
parent5355178a45bdc286d49f04f90059f1e5d0c41a82 (diff)
parent132bb659b643348f29292810e42800441df41ceb (diff)
downloadframeworks_base-67718e076422f8f28f4e30a39df9e462ef32d19b.zip
frameworks_base-67718e076422f8f28f4e30a39df9e462ef32d19b.tar.gz
frameworks_base-67718e076422f8f28f4e30a39df9e462ef32d19b.tar.bz2
am 132bb659: Merge "For issue 4082089 Add more info and error events into the DRM framework" into honeycomb-mr1
* commit '132bb659b643348f29292810e42800441df41ceb': For issue 4082089 Add more info and error events into the DRM framework
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/DrmInfoEvent.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/drm/DrmInfoEvent.h b/include/drm/DrmInfoEvent.h
index 7b409ff..add33d3 100644
--- a/include/drm/DrmInfoEvent.h
+++ b/include/drm/DrmInfoEvent.h
@@ -43,6 +43,8 @@ public:
//! TYPE_ACCOUNT_ALREADY_REGISTERED, when registration has been
//! already done for the given account.
static const int TYPE_ACCOUNT_ALREADY_REGISTERED = 5;
+ //! TYPE_RIGHTS_REMOVED, when the rights has been removed.
+ static const int TYPE_RIGHTS_REMOVED = 6;
/**
* The following constant values should be in sync with DrmErrorEvent.java
@@ -61,6 +63,11 @@ public:
static const int TYPE_NO_INTERNET_CONNECTION = 2005;
//! TYPE_PROCESS_DRM_INFO_FAILED, when failed to process DrmInfo.
static const int TYPE_PROCESS_DRM_INFO_FAILED = 2006;
+ //! TYPE_REMOVE_ALL_RIGHTS_FAILED, when failed to remove all the rights objects
+ //! associated with all DRM schemes.
+ static const int TYPE_REMOVE_ALL_RIGHTS_FAILED = 2007;
+ //! TYPE_ACQUIRE_DRM_INFO_FAILED, when failed to acquire DrmInfo.
+ static const int TYPE_ACQUIRE_DRM_INFO_FAILED = 2008;
public:
/**