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

Side by Side Diff: webrtc/examples/objc/AppRTCDemo/ARDAppClient+Internal.h

Issue 2343403002: Rename AppRTCDemo on Android and iOS to AppRTCMobile (Closed)
Patch Set: Rebase Created 4 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #import "ARDAppClient.h"
12
13 #import "WebRTC/RTCPeerConnection.h"
14
15 #import "ARDRoomServerClient.h"
16 #import "ARDSignalingChannel.h"
17 #import "ARDTURNClient.h"
18
19 @class RTCPeerConnectionFactory;
20
21 @interface ARDAppClient () <ARDSignalingChannelDelegate,
22 RTCPeerConnectionDelegate>
23
24 // All properties should only be mutated from the main queue.
25 @property(nonatomic, strong) id<ARDRoomServerClient> roomServerClient;
26 @property(nonatomic, strong) id<ARDSignalingChannel> channel;
27 @property(nonatomic, strong) id<ARDSignalingChannel> loopbackChannel;
28 @property(nonatomic, strong) id<ARDTURNClient> turnClient;
29
30 @property(nonatomic, strong) RTCPeerConnection *peerConnection;
31 @property(nonatomic, strong) RTCPeerConnectionFactory *factory;
32 @property(nonatomic, strong) NSMutableArray *messageQueue;
33
34 @property(nonatomic, assign) BOOL isTurnComplete;
35 @property(nonatomic, assign) BOOL hasReceivedSdp;
36 @property(nonatomic, readonly) BOOL hasJoinedRoomServerRoom;
37
38 @property(nonatomic, strong) NSString *roomId;
39 @property(nonatomic, strong) NSString *clientId;
40 @property(nonatomic, assign) BOOL isInitiator;
41 @property(nonatomic, strong) NSMutableArray *iceServers;
42 @property(nonatomic, strong) NSURL *webSocketURL;
43 @property(nonatomic, strong) NSURL *webSocketRestURL;
44 @property(nonatomic, readonly) BOOL isLoopback;
45 @property(nonatomic, readonly) BOOL isAudioOnly;
46 @property(nonatomic, readonly) BOOL shouldMakeAecDump;
47 @property(nonatomic, readonly) BOOL shouldUseLevelControl;
48
49 @property(nonatomic, strong)
50 RTCMediaConstraints *defaultPeerConnectionConstraints;
51
52 - (instancetype)initWithRoomServerClient:(id<ARDRoomServerClient>)rsClient
53 signalingChannel:(id<ARDSignalingChannel>)channel
54 turnClient:(id<ARDTURNClient>)turnClient
55 delegate:(id<ARDAppClientDelegate>)delegate;
56
57 @end
OLDNEW
« no previous file with comments | « webrtc/examples/objc/AppRTCDemo/ARDAppClient.m ('k') | webrtc/examples/objc/AppRTCDemo/ARDAppEngineClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698