summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLajos Molnar <lajos@google.com>2015-03-04 16:51:05 -0800
committerLajos Molnar <lajos@google.com>2015-03-05 17:49:51 -0800
commitfa8b4792228083a4c95e8bd1c28690d44bb48bd6 (patch)
tree5f521f522d653c8a550ccb73389103a886583728 /include
parent1d15ab58bf8239069ef343de6cb21aabf3ef7d78 (diff)
downloadframeworks_av-fa8b4792228083a4c95e8bd1c28690d44bb48bd6.zip
frameworks_av-fa8b4792228083a4c95e8bd1c28690d44bb48bd6.tar.gz
frameworks_av-fa8b4792228083a4c95e8bd1c28690d44bb48bd6.tar.bz2
stagefright: remove AMessage methods using id()
Bug: 19607784 Change-Id: I4b2ca396fb50cde5e7dc9801add69037febe698d
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/foundation/ALooperRoster.h3
-rw-r--r--include/media/stagefright/foundation/AMessage.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/include/media/stagefright/foundation/ALooperRoster.h b/include/media/stagefright/foundation/ALooperRoster.h
index 63d52d9..96bce6b 100644
--- a/include/media/stagefright/foundation/ALooperRoster.h
+++ b/include/media/stagefright/foundation/ALooperRoster.h
@@ -38,9 +38,6 @@ struct ALooperRoster {
void postReply(uint32_t replyID, const sp<AMessage> &reply);
- void getHandlerAndLooper(
- ALooper::handler_id handlerID, wp<AHandler> *handler, wp<ALooper> *looper);
-
void dump(int fd, const Vector<String16>& args);
private:
diff --git a/include/media/stagefright/foundation/AMessage.h b/include/media/stagefright/foundation/AMessage.h
index beaefdd..ab3279d 100644
--- a/include/media/stagefright/foundation/AMessage.h
+++ b/include/media/stagefright/foundation/AMessage.h
@@ -32,7 +32,6 @@ struct Parcel;
struct AMessage : public RefBase {
AMessage();
- AMessage(uint32_t what, ALooper::handler_id target = 0);
AMessage(uint32_t what, const sp<const AHandler> &handler);
static sp<AMessage> FromParcel(const Parcel &parcel);
@@ -41,7 +40,6 @@ struct AMessage : public RefBase {
void setWhat(uint32_t what);
uint32_t what() const;
- void setTarget(ALooper::handler_id target);
void setTarget(const sp<const AHandler> &handler);
void clear();