summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authortkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-21 18:47:24 +0000
committertkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-04-21 18:47:24 +0000
commitaf6b980518ad509b79581f816cead6a7b9ade220 (patch)
treee5e94909d3db1b4143cdc65014e96a8c34e1687c /examples
parent26c67e7787ed2887b09a0edea96bd388fcab4ccf (diff)
downloadtalk-af6b980518ad509b79581f816cead6a7b9ade220.tar.gz
Fix typo by renaming RTCSessionDescriptonDelegate -> RTCSessionsDescriptionDelegate
R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12059004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/talk@5946 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'examples')
-rw-r--r--examples/ios/AppRTCDemo/APPRTCAppDelegate.h4
-rw-r--r--examples/ios/AppRTCDemo/APPRTCAppDelegate.m2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/ios/AppRTCDemo/APPRTCAppDelegate.h b/examples/ios/AppRTCDemo/APPRTCAppDelegate.h
index 3e6d600..dd810f7 100644
--- a/examples/ios/AppRTCDemo/APPRTCAppDelegate.h
+++ b/examples/ios/AppRTCDemo/APPRTCAppDelegate.h
@@ -29,7 +29,7 @@
#import "GAEChannelClient.h"
#import "APPRTCAppClient.h"
-#import "RTCSessionDescriptonDelegate.h"
+#import "RTCSessionDescriptionDelegate.h"
#import "RTCVideoSource.h"
// Used to send a message to an apprtc.appspot.com "room".
@protocol APPRTCSendMessage<NSObject>
@@ -48,7 +48,7 @@
@interface APPRTCAppDelegate : UIResponder<ICEServerDelegate,
GAEMessageHandler,
APPRTCSendMessage,
- RTCSessionDescriptonDelegate,
+ RTCSessionDescriptionDelegate,
UIApplicationDelegate>
@property(strong, nonatomic) UIWindow* window;
diff --git a/examples/ios/AppRTCDemo/APPRTCAppDelegate.m b/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
index e251816..e6add76 100644
--- a/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
+++ b/examples/ios/AppRTCDemo/APPRTCAppDelegate.m
@@ -357,7 +357,7 @@
[self closeVideoUI];
}
-#pragma mark - RTCSessionDescriptonDelegate methods
+#pragma mark - RTCSessionDescriptionDelegate methods
// Match |pattern| to |string| and return the first group of the first
// match, or nil if no match was found.