OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 // Called when the route change button is pressed. | 24 // Called when the route change button is pressed. |
25 - (void)videoCallViewDidChangeRoute:(ARDVideoCallView *)view; | 25 - (void)videoCallViewDidChangeRoute:(ARDVideoCallView *)view; |
26 | 26 |
27 // Called when the hangup button is pressed. | 27 // Called when the hangup button is pressed. |
28 - (void)videoCallViewDidHangup:(ARDVideoCallView *)view; | 28 - (void)videoCallViewDidHangup:(ARDVideoCallView *)view; |
29 | 29 |
30 // Called when stats are enabled by triple tapping. | 30 // Called when stats are enabled by triple tapping. |
31 - (void)videoCallViewDidEnableStats:(ARDVideoCallView *)view; | 31 - (void)videoCallViewDidEnableStats:(ARDVideoCallView *)view; |
32 | 32 |
| 33 // Called when the debug button is pressed. |
| 34 - (void)videoCallViewDidDebug:(ARDVideoCallView *)view; |
| 35 |
33 @end | 36 @end |
34 | 37 |
35 // Video call view that shows local and remote video, provides a label to | 38 // Video call view that shows local and remote video, provides a label to |
36 // display status, and also a hangup button. | 39 // display status, and also a hangup button. |
37 @interface ARDVideoCallView : UIView | 40 @interface ARDVideoCallView : UIView |
38 | 41 |
39 @property(nonatomic, readonly) UILabel *statusLabel; | 42 @property(nonatomic, readonly) UILabel *statusLabel; |
40 @property(nonatomic, readonly) RTCCameraPreviewView *localVideoView; | 43 @property(nonatomic, readonly) RTCCameraPreviewView *localVideoView; |
41 @property(nonatomic, readonly) __kindof UIView<RTCVideoRenderer> *remoteVideoVie
w; | 44 @property(nonatomic, readonly) __kindof UIView<RTCVideoRenderer> *remoteVideoVie
w; |
42 @property(nonatomic, readonly) ARDStatsView *statsView; | 45 @property(nonatomic, readonly) ARDStatsView *statsView; |
43 @property(nonatomic, weak) id<ARDVideoCallViewDelegate> delegate; | 46 @property(nonatomic, weak) id<ARDVideoCallViewDelegate> delegate; |
44 | 47 |
45 @end | 48 @end |
OLD | NEW |