commit | 013bdf802a613d54fb8c234604185cedddb73e9b | [log] [tgz] |
---|---|---|
author | tkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Jun 06 22:29:10 2014 +0000 |
committer | tkchin@webrtc.org <tkchin@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Jun 06 22:29:10 2014 +0000 |
tree | d8b2d4dc7198df4be4ea24e9035c1aa3277aa47e | |
parent | 24c177865175794c8ac20f0745ef993c00de461f [diff] [blame] |
APPRTCDemo(objc): Remove regex parsing in favor of JSON struct. Also some cleanup/refactoring of APPRTCAppClient. R=fischman@webrtc.org, glaznev@webrtc.org BUG=3407 Review URL: https://webrtc-codereview.appspot.com/18499004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6362 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/talk/examples/objc/AppRTCDemo/GAEChannelClient.h b/talk/examples/objc/AppRTCDemo/GAEChannelClient.h index 2eac214..dbaeceb 100644 --- a/talk/examples/objc/AppRTCDemo/GAEChannelClient.h +++ b/talk/examples/objc/AppRTCDemo/GAEChannelClient.h
@@ -44,6 +44,9 @@ // application and AppEngine. @interface GAEChannelClient : NSObject -- (id)initWithToken:(NSString*)token delegate:(id<GAEMessageHandler>)delegate; +@property(nonatomic, weak) id<GAEMessageHandler> delegate; + +- (instancetype)initWithToken:(NSString*)token + delegate:(id<GAEMessageHandler>)delegate; @end