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 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 const PeerConnectionInterface::RTCConfiguration&, | 93 const PeerConnectionInterface::RTCConfiguration&, |
94 RTCError*); | 94 RTCError*); |
95 PROXY_METHOD1(bool, | 95 PROXY_METHOD1(bool, |
96 SetConfiguration, | 96 SetConfiguration, |
97 const PeerConnectionInterface::RTCConfiguration&); | 97 const PeerConnectionInterface::RTCConfiguration&); |
98 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) | 98 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) |
99 PROXY_METHOD1(bool, | 99 PROXY_METHOD1(bool, |
100 RemoveIceCandidates, | 100 RemoveIceCandidates, |
101 const std::vector<cricket::Candidate>&); | 101 const std::vector<cricket::Candidate>&); |
102 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) | 102 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) |
| 103 PROXY_METHOD1(RTCError, SetBitrate, const BitrateParameters&); |
103 PROXY_METHOD0(SignalingState, signaling_state) | 104 PROXY_METHOD0(SignalingState, signaling_state) |
104 PROXY_METHOD0(IceConnectionState, ice_connection_state) | 105 PROXY_METHOD0(IceConnectionState, ice_connection_state) |
105 PROXY_METHOD0(IceGatheringState, ice_gathering_state) | 106 PROXY_METHOD0(IceGatheringState, ice_gathering_state) |
106 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) | 107 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) |
107 PROXY_METHOD0(void, StopRtcEventLog) | 108 PROXY_METHOD0(void, StopRtcEventLog) |
108 PROXY_METHOD0(void, Close) | 109 PROXY_METHOD0(void, Close) |
109 END_PROXY_MAP() | 110 END_PROXY_MAP() |
110 | 111 |
111 } // namespace webrtc | 112 } // namespace webrtc |
112 | 113 |
113 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ | 114 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ |
OLD | NEW |