diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-06-28 22:05:55 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-02 15:12:41 +0200 |
commit | 3711ad23f6c936b494041845254565efed8ca6f8 (patch) | |
tree | 7e1d1a967f25a2cb2318f9a3a2ea7c1de8cb9a0a /src/WebRTCLibObservers.cpp | |
parent | 001be7850090f88e0ff760eddadbe1c03004fd0f (diff) | |
download | fork-godot-webrtc-native-3711ad23f6c936b494041845254565efed8ca6f8.tar.gz fork-godot-webrtc-native-3711ad23f6c936b494041845254565efed8ca6f8.tar.bz2 fork-godot-webrtc-native-3711ad23f6c936b494041845254565efed8ca6f8.zip |
Bump webrtc to branch-heads/4472.
Diffstat (limited to 'src/WebRTCLibObservers.cpp')
-rw-r--r-- | src/WebRTCLibObservers.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WebRTCLibObservers.cpp b/src/WebRTCLibObservers.cpp index 4564195..6d8f15f 100644 --- a/src/WebRTCLibObservers.cpp +++ b/src/WebRTCLibObservers.cpp @@ -15,7 +15,7 @@ void WebRTCLibPeerConnection::GodotCSDO::OnSuccess(webrtc::SessionDescriptionInt parent->queue_signal("session_description_created", 2, desc->type().c_str(), sdp.c_str()); }; -void WebRTCLibPeerConnection::GodotCSDO::OnFailure(const std::string &error){}; +void WebRTCLibPeerConnection::GodotCSDO::OnFailure(webrtc::RTCError error){}; // SetSessionObseerver WebRTCLibPeerConnection::GodotSSDO::GodotSSDO(WebRTCLibPeerConnection *parent) { @@ -23,7 +23,7 @@ WebRTCLibPeerConnection::GodotSSDO::GodotSSDO(WebRTCLibPeerConnection *parent) { } void WebRTCLibPeerConnection::GodotSSDO::OnSuccess(){}; -void WebRTCLibPeerConnection::GodotSSDO::OnFailure(const std::string &error){}; +void WebRTCLibPeerConnection::GodotSSDO::OnFailure(webrtc::RTCError error){}; // PeerConnectionObserver WebRTCLibPeerConnection::GodotPCO::GodotPCO(WebRTCLibPeerConnection *parent) { |