Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: webrtc/examples/objc/AppRTCDemo/ARDAppClient.m

Issue 1581693006: Adding "first packet received" notification to PeerConnectionObserver. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Implementing onFirstMediaPacketReceived in objc AppRTC client. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/examples/objc/AppRTCDemo/ARDAppClient.m
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.m b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.m
index 33e00ed443e346daf820d3710b02e77acbec5f27..50fac5d3b7089044e9c6f3afd264ea8a240faabd 100644
--- a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.m
+++ b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.m
@@ -384,6 +384,11 @@ static NSInteger const kARDAppClientErrorInvalidRoom = -6;
didOpenDataChannel:(RTCDataChannel *)dataChannel {
}
+- (void)peerConnectionOnFirstMediaPacketReceived:
+ (RTCPeerConnection *)peerConnection {
+ RTCLog(@"Received first media packet.");
+}
+
#pragma mark - RTCStatsDelegate
- (void)peerConnection:(RTCPeerConnection *)peerConnection

Powered by Google App Engine
This is Rietveld 408576698