diff options
author | Roxanne Skelly <roxie@lindenlab.com> | 2024-03-19 22:47:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 22:47:44 -0700 |
commit | 6047b61b2afc7eea0292e76920699aa7973bc33d (patch) | |
tree | a1e0973bb30f86a528d0ac07f14b0f10f899a462 /indra/llwebrtc/llwebrtc.h | |
parent | 410be3b2d0ebbf6746140712430e54270541aecd (diff) | |
parent | 0e2fc4d35ea1fdef0028a5132602985da2e1c463 (diff) |
Merge pull request #1021 from secondlife/roxie/webrtc-voice-workqueue
WebRTC: Make callbacks from webrtc-proper launch workqueue jobs to run code on the main thread, instead of relying on mutexes and such.
Diffstat (limited to 'indra/llwebrtc/llwebrtc.h')
-rw-r--r-- | indra/llwebrtc/llwebrtc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llwebrtc/llwebrtc.h b/indra/llwebrtc/llwebrtc.h index dab7774499..be2e5cdf68 100644 --- a/indra/llwebrtc/llwebrtc.h +++ b/indra/llwebrtc/llwebrtc.h @@ -192,9 +192,6 @@ class LLWebRTCSignalingObserver // Called when the data channel has been established and data // transfer can begin. virtual void OnDataChannelReady(LLWebRTCDataInterface *data_interface) = 0; - - // Called when a peer connection has finished shutting down. - virtual void OnPeerConnectionShutdown() = 0; }; |