summaryrefslogtreecommitdiffstats
path: root/include
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
commitfddf5d9f48d0864a30fcc2706616f6aa6cb06c61 (patch)
tree4cf6b1091a3914612f9e3532d185624c62800464 /include
parentb19fcf3e9c6b9c8c2885b9ac7f7f836a0e2d6d22 (diff)
downloadframeworks_base-fddf5d9f48d0864a30fcc2706616f6aa6cb06c61.zip
frameworks_base-fddf5d9f48d0864a30fcc2706616f6aa6cb06c61.tar.gz
frameworks_base-fddf5d9f48d0864a30fcc2706616f6aa6cb06c61.tar.bz2
Make dumpsys(media.player) more useful by having AwesomePlayer populate it.
Change-Id: I12ba7d542331a8293d67a0d47378b8be4f777759
Diffstat (limited to 'include')
-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;