From 1099586bd48a8a90bb1cc4e7c279703bc7259214 Mon Sep 17 00:00:00 2001 From: Glenn Kasten Date: Tue, 3 Jan 2012 14:50:23 -0800 Subject: Declare IAudioTrack methods in binder opcode order This makes it easier to match up the declarations. Change-Id: I0996c20b2903b778b356dfe52b07b0ec634855dd --- include/media/IAudioTrack.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/media/IAudioTrack.h') diff --git a/include/media/IAudioTrack.h b/include/media/IAudioTrack.h index 3fa2bf8..b83e552 100644 --- a/include/media/IAudioTrack.h +++ b/include/media/IAudioTrack.h @@ -35,6 +35,9 @@ class IAudioTrack : public IInterface public: DECLARE_META_INTERFACE(AudioTrack); + /* Get this track's control block */ + virtual sp getCblk() const = 0; + /* After it's created the track is not active. Call start() to * make it active. If set, the callback will start being called. */ @@ -67,8 +70,6 @@ public: */ virtual status_t attachAuxEffect(int effectId) = 0; - /* get this track's control block */ - virtual sp getCblk() const = 0; }; // ---------------------------------------------------------------------------- -- cgit v1.1