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

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

Issue 1690313002: Update iOS AppRTCDemo to use the updated Objective-C API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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.h
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h
index 0745c16a4c58bc3e79dea9b31b7356d809d86c9d..1ffcf1c747c82baa8aa2de2b6009e83c0ab47e5c 100644
--- a/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h
+++ b/webrtc/examples/objc/AppRTCDemo/ARDAppClient.h
@@ -10,7 +10,8 @@
#import <Foundation/Foundation.h>
-#import "RTCVideoTrack.h"
+#import "webrtc/api/objc/RTCPeerConnection.h"
+#import "webrtc/api/objc/RTCVideoTrack.h"
hjon_webrtc 2016/02/12 17:34:56 Should all of these paths be absolute? That seemed
typedef NS_ENUM(NSInteger, ARDAppClientState) {
// Disconnected from servers.
@@ -30,7 +31,7 @@ typedef NS_ENUM(NSInteger, ARDAppClientState) {
didChangeState:(ARDAppClientState)state;
- (void)appClient:(ARDAppClient *)client
- didChangeConnectionState:(RTCICEConnectionState)state;
+ didChangeConnectionState:(RTCIceConnectionState)state;
- (void)appClient:(ARDAppClient *)client
didReceiveLocalVideoTrack:(RTCVideoTrack *)localVideoTrack;

Powered by Google App Engine
This is Rietveld 408576698