diff options
author | niko <niko@google.com> | 2009-06-22 08:49:52 -0700 |
---|---|---|
committer | niko <niko@google.com> | 2009-06-22 09:08:19 -0700 |
commit | dcd810d01394cbcc78905b46e212a49e38f88b8b (patch) | |
tree | 0b78eed936bb3b4bed5c59230f5aa39b027ea3c5 /media/libmedia/IMediaPlayerClient.cpp | |
parent | 2b31fec39c89aeac3ee8fd1154499e84e16d909a (diff) | |
download | frameworks_base-dcd810d01394cbcc78905b46e212a49e38f88b8b.zip frameworks_base-dcd810d01394cbcc78905b46e212a49e38f88b8b.tar.gz frameworks_base-dcd810d01394cbcc78905b46e212a49e38f88b8b.tar.bz2 |
Renamed all android.hardware.IMedia* strings to android.media.IMedia*
The android.hardware.ICamera string have not been changed (but is looks
like the camera service and client one should undergo the same procedure)
The implementation of the interface must provide a unique string for
it's interface name. Currently all these strings in the media framework
start with 'android.hardware' when it should really be 'android.media',
the interface token has nothing to do with hardware.
Diffstat (limited to 'media/libmedia/IMediaPlayerClient.cpp')
-rw-r--r-- | media/libmedia/IMediaPlayerClient.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/media/libmedia/IMediaPlayerClient.cpp b/media/libmedia/IMediaPlayerClient.cpp index da4f7ef..bf51829 100644 --- a/media/libmedia/IMediaPlayerClient.cpp +++ b/media/libmedia/IMediaPlayerClient.cpp @@ -46,7 +46,7 @@ public: } }; -IMPLEMENT_META_INTERFACE(MediaPlayerClient, "android.hardware.IMediaPlayerClient"); +IMPLEMENT_META_INTERFACE(MediaPlayerClient, "android.media.IMediaPlayerClient"); // ---------------------------------------------------------------------- @@ -68,4 +68,3 @@ status_t BnMediaPlayerClient::onTransact( } }; // namespace android - |