diff options
author | Mike Antipov <mantipov@productengine.com> | 2009-12-16 18:14:15 +0200 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2009-12-16 18:14:15 +0200 |
commit | 0ec2bacfac207451386b55006f94e917f1277edc (patch) | |
tree | b091300523e7566ba888215edfc0fedb3615c0d1 /indra/newview/llspeakers.h | |
parent | 5370d9f35bc5aac49dbb8f065c13f094879ed436 (diff) |
Work on EXT-3431 Implement 'mute/unmute everyone else' moderation in the voice control panel
-- changed behavior of 'mute/unmute everyone else' action to disable/enable voice chat and allow/disallow selected participant
Improvements to have more intellectual processing of several following requests is necessary
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llspeakers.h')
-rw-r--r-- | indra/newview/llspeakers.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llspeakers.h b/indra/newview/llspeakers.h index 6f7a1d2c49..55d2351cbf 100644 --- a/indra/newview/llspeakers.h +++ b/indra/newview/llspeakers.h @@ -186,8 +186,15 @@ public: * @see moderateVoiceParticipant() */ void moderateVoiceOtherParticipants(const LLUUID& excluded_avatar_id, bool unmute); + + void processSessionUpdate(const LLSD& session_update); + protected: virtual void updateSpeakerList(); + + void moderateVoiceSession(const LLUUID& session_id, bool disallow_voice); + + LLUUID mReverseVoiceModeratedAvatarID; }; class LLActiveSpeakerMgr : public LLSpeakerMgr, public LLSingleton<LLActiveSpeakerMgr> |