summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Tinker <jtinker@google.com>2014-11-06 02:33:37 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-11-06 02:33:37 +0000
commit19a3f69d9d5398db62ee7b15f2c13052d7ee9f07 (patch)
treecf8ab0afd5e431df089fb7a45499fd1981ba4fc4 /include
parent74adca9ad30b7f8a70d40c5237bade0d16c4ea58 (diff)
parent3c1285e8f86bd497e14c14fb6df7b42072ef52bd (diff)
downloadframeworks_av-19a3f69d9d5398db62ee7b15f2c13052d7ee9f07.zip
frameworks_av-19a3f69d9d5398db62ee7b15f2c13052d7ee9f07.tar.gz
frameworks_av-19a3f69d9d5398db62ee7b15f2c13052d7ee9f07.tar.bz2
Merge "Add missing secure stop methods" into lmp-mr1-dev
Diffstat (limited to 'include')
-rw-r--r--include/media/IDrm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/IDrm.h b/include/media/IDrm.h
index 68de87a..affcbd7 100644
--- a/include/media/IDrm.h
+++ b/include/media/IDrm.h
@@ -73,8 +73,10 @@ struct IDrm : public IInterface {
virtual status_t unprovisionDevice() = 0;
virtual status_t getSecureStops(List<Vector<uint8_t> > &secureStops) = 0;
+ virtual status_t getSecureStop(Vector<uint8_t> const &ssid, Vector<uint8_t> &secureStop) = 0;
virtual status_t releaseSecureStops(Vector<uint8_t> const &ssRelease) = 0;
+ virtual status_t releaseAllSecureStops() = 0;
virtual status_t getPropertyString(String8 const &name, String8 &value) const = 0;
virtual status_t getPropertyByteArray(String8 const &name,
@@ -137,4 +139,3 @@ private:
} // namespace android
#endif // ANDROID_IDRM_H_
-