summaryrefslogtreecommitdiffstats
path: root/include/media/MediaPlayerInterface.h
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2011-06-07 15:52:25 -0700
committerAndreas Huber <andih@google.com>2011-06-08 16:04:26 -0700
commita0b1d4b161599c2bb2a47119e50c51e75bbe980e (patch)
tree806d5dbe250fbd8069bff8bcafffc730736fef8d /include/media/MediaPlayerInterface.h
parent26adde897188059057b3ffcfde1d60171fc6888c (diff)
downloadframeworks_av-a0b1d4b161599c2bb2a47119e50c51e75bbe980e.zip
frameworks_av-a0b1d4b161599c2bb2a47119e50c51e75bbe980e.tar.gz
frameworks_av-a0b1d4b161599c2bb2a47119e50c51e75bbe980e.tar.bz2
Make dumpsys(media.player) more useful by having AwesomePlayer populate it.
Change-Id: I12ba7d542331a8293d67a0d47378b8be4f777759
Diffstat (limited to 'include/media/MediaPlayerInterface.h')
-rw-r--r--include/media/MediaPlayerInterface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/media/MediaPlayerInterface.h b/include/media/MediaPlayerInterface.h
index f0401cc..18e8a5f 100644
--- a/include/media/MediaPlayerInterface.h
+++ b/include/media/MediaPlayerInterface.h
@@ -168,6 +168,10 @@ public:
if (mNotify) mNotify(mCookie, msg, ext1, ext2, obj);
}
+ virtual status_t dump(int fd, const Vector<String16> &args) const {
+ return INVALID_OPERATION;
+ }
+
private:
friend class MediaPlayerService;