diff options
Diffstat (limited to 'libs/audioflinger/AudioPolicyService.h')
-rw-r--r-- | libs/audioflinger/AudioPolicyService.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/audioflinger/AudioPolicyService.h b/libs/audioflinger/AudioPolicyService.h index b9234ec39c10..a13d0bdce327 100644 --- a/libs/audioflinger/AudioPolicyService.h +++ b/libs/audioflinger/AudioPolicyService.h @@ -132,7 +132,7 @@ private: SET_VOICE_VOLUME }; - AudioCommandThread (); + AudioCommandThread (String8 name); virtual ~AudioCommandThread(); status_t dump(int fd); @@ -195,7 +195,8 @@ private: Condition mWaitWorkCV; Vector <AudioCommand *> mAudioCommands; // list of pending commands ToneGenerator *mpToneGenerator; // the tone generator - AudioCommand mLastCommand; + AudioCommand mLastCommand; // last processed command (used by dump) + String8 mName; // string used by wake lock fo delayed commands }; // Internal dump utilities. |