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

Unified Diff: webrtc/examples/objc/AppRTCDemo/ARDTURNClient.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: Update Mac demo and other changes after updating against master 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/ARDTURNClient.h
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h b/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h
index 8f2a81734229fca65421613794b3ab1accca8c2e..d5aeb54354e5d54a78b605a1b0f7865a898ce3ed 100644
--- a/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h
+++ b/webrtc/examples/objc/AppRTCDemo/ARDTURNClient.h
@@ -10,11 +10,13 @@
#import <Foundation/Foundation.h>
+@class RTCIceServer;
+
@protocol ARDTURNClient <NSObject>
// Returns TURN server urls if successful.
-- (void)requestServersWithCompletionHandler:
- (void (^)(NSArray *turnServers,
+- (void)requestServerWithCompletionHandler:
+ (void (^)(RTCIceServer *turnServer,
NSError *error))completionHandler;
@end

Powered by Google App Engine
This is Rietveld 408576698