OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 |
11 #ifndef WEBRTC_API_PEERCONNECTIONPROXY_H_ | 11 #ifndef WEBRTC_PC_PEERCONNECTIONPROXY_H_ |
12 #define WEBRTC_API_PEERCONNECTIONPROXY_H_ | 12 #define WEBRTC_PC_PEERCONNECTIONPROXY_H_ |
13 | 13 |
14 #include "webrtc/api/peerconnectioninterface.h" | 14 #include "webrtc/api/peerconnectioninterface.h" |
15 #include "webrtc/api/proxy.h" | 15 #include "webrtc/api/proxy.h" |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 | 18 |
19 // Define proxy for PeerConnectionInterface. | 19 // Define proxy for PeerConnectionInterface. |
20 BEGIN_SIGNALING_PROXY_MAP(PeerConnection) | 20 BEGIN_SIGNALING_PROXY_MAP(PeerConnection) |
21 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, | 21 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, |
22 local_streams) | 22 local_streams) |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 PROXY_METHOD0(SignalingState, signaling_state) | 75 PROXY_METHOD0(SignalingState, signaling_state) |
76 PROXY_METHOD0(IceConnectionState, ice_connection_state) | 76 PROXY_METHOD0(IceConnectionState, ice_connection_state) |
77 PROXY_METHOD0(IceGatheringState, ice_gathering_state) | 77 PROXY_METHOD0(IceGatheringState, ice_gathering_state) |
78 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) | 78 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) |
79 PROXY_METHOD0(void, StopRtcEventLog) | 79 PROXY_METHOD0(void, StopRtcEventLog) |
80 PROXY_METHOD0(void, Close) | 80 PROXY_METHOD0(void, Close) |
81 END_SIGNALING_PROXY() | 81 END_SIGNALING_PROXY() |
82 | 82 |
83 } // namespace webrtc | 83 } // namespace webrtc |
84 | 84 |
85 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ | 85 #endif // WEBRTC_PC_PEERCONNECTIONPROXY_H_ |
OLD | NEW |