summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authortkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-30 18:32:33 +0000
committertkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-30 18:32:33 +0000
commita00076bd69084cb5091df8e007f34236d9647b65 (patch)
treeb45d085dec29e824e820f7ee39cac30072c371ad /examples
parent9ca9ff24f68ef3eacf070a72a27e830aaea06a06 (diff)
downloadtalk-a00076bd69084cb5091df8e007f34236d9647b65.tar.gz
Implement ObjC DataChannel wrapper
R=fischman@webrtc.org BUG=3112 Review URL: https://webrtc-codereview.appspot.com/16369004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/talk@6031 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'examples')
-rw-r--r--examples/ios/AppRTCDemo/APPRTCAppDelegate.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/ios/AppRTCDemo/APPRTCAppDelegate.m b/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
index 2ed8ff2..cc33f03 100644
--- a/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
+++ b/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
@@ -150,6 +150,11 @@
});
}
+- (void)peerConnection:(RTCPeerConnection*)peerConnection
+ didOpenDataChannel:(RTCDataChannel*)dataChannel {
+ NSAssert(NO, @"AppRTC doesn't use DataChannels");
+}
+
#pragma mark - Private
- (void)displayLogMessage:(NSString*)message {