summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorTakeshi Aimi <aimitakeshi@gmail.com>2010-11-30 16:27:42 +0900
committerTakeshi Aimi <aimitakeshi@gmail.com>2010-11-30 16:27:42 +0900
commitc618b5af98dec06d49374a61a5a94016f9fec2d3 (patch)
treea33e45ff0d2cd56b47da6fced34e898950ca08b2 /include/drm
parentc533edc9c70dd9434e2e496dc0d52f534472c7e0 (diff)
downloadframeworks_av-c618b5af98dec06d49374a61a5a94016f9fec2d3.zip
frameworks_av-c618b5af98dec06d49374a61a5a94016f9fec2d3.tar.gz
frameworks_av-c618b5af98dec06d49374a61a5a94016f9fec2d3.tar.bz2
DRM Framework bug fixes.
- Make sure to clean-up obsolete listeners. - Close cursor after using it. - Add virtual destructor to the base class of OnInfoListener. Changes are made by SEMC and Sony. Change-Id: Ibb6dd625ef48e3597188f0d7c90f9d4c780b6139
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/DrmManagerClient.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/DrmManagerClient.h b/include/drm/DrmManagerClient.h
index 3dbfbe2..004556f 100644
--- a/include/drm/DrmManagerClient.h
+++ b/include/drm/DrmManagerClient.h
@@ -49,6 +49,9 @@ public:
class OnInfoListener: virtual public RefBase {
public:
+ virtual ~OnInfoListener() {}
+
+ public:
virtual void onInfo(const DrmInfoEvent& event) = 0;
};