Index: webrtc/examples/objc/AppRTCDemo/ARDCEODTURNClient.m |
diff --git a/webrtc/examples/objc/AppRTCDemo/ARDCEODTURNClient.m b/webrtc/examples/objc/AppRTCDemo/ARDCEODTURNClient.m |
index 70f815a6a8bf9457961eab19fe34a55e830aaebd..04a379c471d3dc70aa3a86f2b257b424ca763707 100644 |
--- a/webrtc/examples/objc/AppRTCDemo/ARDCEODTURNClient.m |
+++ b/webrtc/examples/objc/AppRTCDemo/ARDCEODTURNClient.m |
@@ -11,7 +11,7 @@ |
#import "ARDCEODTURNClient.h" |
#import "ARDUtilities.h" |
-#import "RTCICEServer+JSON.h" |
+#import "RTCIceServer+JSON.h" |
// TODO(tkchin): move this to a configuration object. |
static NSString *kTURNOriginURLString = @"https://apprtc.appspot.com"; |
@@ -48,7 +48,7 @@ static NSInteger kARDCEODTURNClientErrorBadResponse = -1; |
return; |
} |
NSDictionary *dict = [NSDictionary dictionaryWithJSONData:data]; |
- turnServers = [RTCICEServer serversFromCEODJSONDictionary:dict]; |
+ turnServers = [RTCIceServer serversFromCEODJSONDictionary:dict]; |
if (!turnServers) { |
NSError *responseError = |
[[NSError alloc] initWithDomain:kARDCEODTURNClientErrorDomain |