| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 MediaStreamTrackInterface*, | 43 MediaStreamTrackInterface*, |
| 44 StatsOutputLevel) | 44 StatsOutputLevel) |
| 45 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>, | 45 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>, |
| 46 CreateDataChannel, const std::string&, const DataChannelInit*) | 46 CreateDataChannel, const std::string&, const DataChannelInit*) |
| 47 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description) | 47 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description) |
| 48 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description) | 48 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description) |
| 49 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, | 49 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, |
| 50 const MediaConstraintsInterface*) | 50 const MediaConstraintsInterface*) |
| 51 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, | 51 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, |
| 52 const MediaConstraintsInterface*) | 52 const MediaConstraintsInterface*) |
| 53 PROXY_METHOD2(void, |
| 54 CreateOffer, |
| 55 CreateSessionDescriptionObserver*, |
| 56 const RTCOfferAnswerOptions&) |
| 57 PROXY_METHOD2(void, |
| 58 CreateAnswer, |
| 59 CreateSessionDescriptionObserver*, |
| 60 const RTCOfferAnswerOptions&) |
| 53 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*, | 61 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*, |
| 54 SessionDescriptionInterface*) | 62 SessionDescriptionInterface*) |
| 55 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*, | 63 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*, |
| 56 SessionDescriptionInterface*) | 64 SessionDescriptionInterface*) |
| 57 PROXY_METHOD1(bool, | 65 PROXY_METHOD1(bool, |
| 58 SetConfiguration, | 66 SetConfiguration, |
| 59 const PeerConnectionInterface::RTCConfiguration&); | 67 const PeerConnectionInterface::RTCConfiguration&); |
| 60 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) | 68 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) |
| 61 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) | 69 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) |
| 62 PROXY_METHOD0(SignalingState, signaling_state) | 70 PROXY_METHOD0(SignalingState, signaling_state) |
| 63 PROXY_METHOD0(IceState, ice_state) | 71 PROXY_METHOD0(IceState, ice_state) |
| 64 PROXY_METHOD0(IceConnectionState, ice_connection_state) | 72 PROXY_METHOD0(IceConnectionState, ice_connection_state) |
| 65 PROXY_METHOD0(IceGatheringState, ice_gathering_state) | 73 PROXY_METHOD0(IceGatheringState, ice_gathering_state) |
| 66 PROXY_METHOD0(void, Close) | 74 PROXY_METHOD0(void, Close) |
| 67 END_PROXY() | 75 END_PROXY() |
| 68 | 76 |
| 69 } // namespace webrtc | 77 } // namespace webrtc |
| 70 | 78 |
| 71 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ | 79 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ |
| OLD | NEW |