summaryrefslogtreecommitdiff
path: root/indra/newview/llvoicewebrtc.h
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-01-29 21:26:36 -0800
committerRoxie Linden <roxie@lindenlab.com>2024-02-08 18:35:54 -0800
commit4b65e2b266d689028d627d0fbe6f2d97c997e7ed (patch)
treee1714250799a9afe33ab248ca76fa7b9d52a0e9f /indra/newview/llvoicewebrtc.h
parent02423047646cfc7d410e223611033d488f1c26b0 (diff)
mac build fixes
Diffstat (limited to 'indra/newview/llvoicewebrtc.h')
-rw-r--r--indra/newview/llvoicewebrtc.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h
index 38d867db8d..6562a737ae 100644
--- a/indra/newview/llvoicewebrtc.h
+++ b/indra/newview/llvoicewebrtc.h
@@ -747,20 +747,20 @@ class LLVoiceWebRTCConnection :
/// @name Signaling notification
// LLWebRTCSignalingObserver
//@{
- virtual void OnIceGatheringState(IceGatheringState state);
- virtual void OnIceCandidate(const llwebrtc::LLWebRTCIceCandidate &candidate);
- virtual void OnOfferAvailable(const std::string &sdp);
- virtual void OnRenegotiationNeeded() override;
- virtual void OnAudioEstablished(llwebrtc::LLWebRTCAudioInterface *audio_interface);
- virtual void OnPeerShutDown();
+ void OnIceGatheringState(IceGatheringState state) override;
+ void OnIceCandidate(const llwebrtc::LLWebRTCIceCandidate &candidate) override;
+ void OnOfferAvailable(const std::string &sdp) override;
+ void OnRenegotiationNeeded() override;
+ void OnAudioEstablished(llwebrtc::LLWebRTCAudioInterface *audio_interface) override;
+ void OnPeerShutDown() override;
//@}
/////////////////////////
/// @name Data Notification
/// LLWebRTCDataObserver
//@{
- virtual void OnDataReceived(const std::string &data, bool binary);
- virtual void OnDataChannelReady(llwebrtc::LLWebRTCDataInterface *data_interface);
+ void OnDataReceived(const std::string &data, bool binary) override;
+ void OnDataChannelReady(llwebrtc::LLWebRTCDataInterface *data_interface) override;
//@}
void sendData(const std::string &data);