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

Unified Diff: webrtc/examples/objc/AppRTCDemo/ARDSignalingMessage.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/ARDSignalingMessage.h
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDSignalingMessage.h b/webrtc/examples/objc/AppRTCDemo/ARDSignalingMessage.h
index c33997fb466ecc879b1fc8f93fb1785cd97b5eac..22c7b89743976ac8dad59fc41d02434c1a48c6e6 100644
--- a/webrtc/examples/objc/AppRTCDemo/ARDSignalingMessage.h
+++ b/webrtc/examples/objc/AppRTCDemo/ARDSignalingMessage.h
@@ -10,8 +10,8 @@
#import <Foundation/Foundation.h>
-#import "RTCICECandidate.h"
-#import "RTCSessionDescription.h"
+#import "webrtc/api/objc/RTCIceCandidate.h"
+#import "webrtc/api/objc/RTCSessionDescription.h"
typedef enum {
kARDSignalingMessageTypeCandidate,
@@ -31,9 +31,9 @@ typedef enum {
@interface ARDICECandidateMessage : ARDSignalingMessage
-@property(nonatomic, readonly) RTCICECandidate *candidate;
+@property(nonatomic, readonly) RTCIceCandidate *candidate;
-- (instancetype)initWithCandidate:(RTCICECandidate *)candidate;
+- (instancetype)initWithCandidate:(RTCIceCandidate *)candidate;
@end

Powered by Google App Engine
This is Rietveld 408576698