iOS: unbreak the build following r4546

BUG=2255
R=niklas.enbom@webrtc.org, sjlee@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/2078004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4577 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
fischman@webrtc.org
2013-08-20 22:16:55 +00:00
parent ebe68aad44
commit d0f4c2185b
4 changed files with 12 additions and 7 deletions

View File

@@ -34,7 +34,7 @@
@interface APPRTCAppClient ()
@property(nonatomic, assign) dispatch_queue_t backgroundQueue;
@property(nonatomic, strong) dispatch_queue_t backgroundQueue;
@property(nonatomic, copy) NSString *baseURL;
@property(nonatomic, strong) GAEChannelClient *gaeChannel;
@property(nonatomic, copy) NSString *postMessageUrl;
@@ -52,7 +52,6 @@
- (id)init {
if (self = [super init]) {
_backgroundQueue = dispatch_queue_create("RTCBackgroundQueue", NULL);
dispatch_retain(_backgroundQueue);
_sendQueue = [NSMutableArray array];
// Uncomment to see Request/Response logging.
// _verboseLogging = YES;
@@ -60,10 +59,6 @@
return self;
}
- (void)dealloc {
dispatch_release(_backgroundQueue);
}
#pragma mark - Public methods
- (void)connectToRoom:(NSURL *)url {