From f2799fdbb296fa764384ba085fcb46e19248b09a Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Tue, 14 Aug 2018 04:41:15 +0200 Subject: Fix name collision, scons file, final touches --- src/GodotPeerConnectionObserver.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/GodotPeerConnectionObserver.cpp') diff --git a/src/GodotPeerConnectionObserver.cpp b/src/GodotPeerConnectionObserver.cpp index 572b6d7..298cfcf 100644 --- a/src/GodotPeerConnectionObserver.cpp +++ b/src/GodotPeerConnectionObserver.cpp @@ -1,33 +1,33 @@ -#include "WebRTCPeer.hpp" +#include "WebRTCLibPeer.hpp" using namespace godot_webrtc; -WebRTCPeer::GodotPCO::GodotPCO(WebRTCPeer *parent) { +WebRTCLibPeer::GodotPCO::GodotPCO(WebRTCLibPeer *parent) { this->parent = parent; } -void WebRTCPeer::GodotPCO::OnSignalingChange(webrtc::PeerConnectionInterface::SignalingState new_state) { +void WebRTCLibPeer::GodotPCO::OnSignalingChange(webrtc::PeerConnectionInterface::SignalingState new_state) { } -void WebRTCPeer::GodotPCO::OnAddStream(rtc::scoped_refptr stream) { +void WebRTCLibPeer::GodotPCO::OnAddStream(rtc::scoped_refptr stream) { } -void WebRTCPeer::GodotPCO::OnRemoveStream(rtc::scoped_refptr stream) { +void WebRTCLibPeer::GodotPCO::OnRemoveStream(rtc::scoped_refptr stream) { } -void WebRTCPeer::GodotPCO::OnDataChannel(rtc::scoped_refptr data_channel) { +void WebRTCLibPeer::GodotPCO::OnDataChannel(rtc::scoped_refptr data_channel) { } -void WebRTCPeer::GodotPCO::OnRenegotiationNeeded() { +void WebRTCLibPeer::GodotPCO::OnRenegotiationNeeded() { } -void WebRTCPeer::GodotPCO::OnIceConnectionChange(webrtc::PeerConnectionInterface::IceConnectionState new_state) { +void WebRTCLibPeer::GodotPCO::OnIceConnectionChange(webrtc::PeerConnectionInterface::IceConnectionState new_state) { } -void WebRTCPeer::GodotPCO::OnIceGatheringChange(webrtc::PeerConnectionInterface::IceGatheringState new_state) { +void WebRTCLibPeer::GodotPCO::OnIceGatheringChange(webrtc::PeerConnectionInterface::IceGatheringState new_state) { } -void WebRTCPeer::GodotPCO::OnIceCandidate(const webrtc::IceCandidateInterface *candidate) { +void WebRTCLibPeer::GodotPCO::OnIceCandidate(const webrtc::IceCandidateInterface *candidate) { // Serialize the candidate and send it to the remote peer: godot::Dictionary candidateSDP; -- cgit v1.2.3