summaryrefslogtreecommitdiff
path: root/src/GodotSetSessionDescriptionObserver.cpp
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2019-05-21 14:08:30 +0200
committerGitHub <noreply@github.com>2019-05-21 14:08:30 +0200
commit423454086e21d40a545f9e46d6e35c1b3c557d77 (patch)
tree34c78fa5e627d35b9302618724dfbb7ff0e5e77c /src/GodotSetSessionDescriptionObserver.cpp
parentf2cf2e5340c1aa20516aea4863b8f7a46f317bb6 (diff)
parent599ed98f6cb956d5189ec4b4905dbc2a8a1b5d9a (diff)
downloadgodot-webrtc-native-423454086e21d40a545f9e46d6e35c1b3c557d77.tar.gz
godot-webrtc-native-423454086e21d40a545f9e46d6e35c1b3c557d77.tar.bz2
godot-webrtc-native-423454086e21d40a545f9e46d6e35c1b3c557d77.zip
Merge pull request #3 from Faless/channels_pr
Update to new DataChannel API, singleton load.
Diffstat (limited to 'src/GodotSetSessionDescriptionObserver.cpp')
-rw-r--r--src/GodotSetSessionDescriptionObserver.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/GodotSetSessionDescriptionObserver.cpp b/src/GodotSetSessionDescriptionObserver.cpp
index 52be2af..96d466c 100644
--- a/src/GodotSetSessionDescriptionObserver.cpp
+++ b/src/GodotSetSessionDescriptionObserver.cpp
@@ -1,11 +1,11 @@
-#include "WebRTCLibPeer.hpp"
+#include "WebRTCLibPeerConnection.hpp"
using namespace godot_webrtc;
-WebRTCLibPeer::GodotSSDO::GodotSSDO(WebRTCLibPeer *parent) {
+WebRTCLibPeerConnection::GodotSSDO::GodotSSDO(WebRTCLibPeerConnection *parent) {
this->parent = parent;
}
-void WebRTCLibPeer::GodotSSDO::OnSuccess(){};
+void WebRTCLibPeerConnection::GodotSSDO::OnSuccess(){};
-void WebRTCLibPeer::GodotSSDO::OnFailure(const std::string &error){};
+void WebRTCLibPeerConnection::GodotSSDO::OnFailure(const std::string &error){};