OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 25 matching lines...) Expand all Loading... |
36 // Define proxy for PeerConnectionInterface. | 36 // Define proxy for PeerConnectionInterface. |
37 BEGIN_PROXY_MAP(PeerConnection) | 37 BEGIN_PROXY_MAP(PeerConnection) |
38 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, | 38 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, |
39 local_streams) | 39 local_streams) |
40 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, | 40 PROXY_METHOD0(rtc::scoped_refptr<StreamCollectionInterface>, |
41 remote_streams) | 41 remote_streams) |
42 PROXY_METHOD1(bool, AddStream, MediaStreamInterface*) | 42 PROXY_METHOD1(bool, AddStream, MediaStreamInterface*) |
43 PROXY_METHOD1(void, RemoveStream, MediaStreamInterface*) | 43 PROXY_METHOD1(void, RemoveStream, MediaStreamInterface*) |
44 PROXY_METHOD1(rtc::scoped_refptr<DtmfSenderInterface>, | 44 PROXY_METHOD1(rtc::scoped_refptr<DtmfSenderInterface>, |
45 CreateDtmfSender, AudioTrackInterface*) | 45 CreateDtmfSender, AudioTrackInterface*) |
| 46 PROXY_CONSTMETHOD0(RtpSenderRefptrs, GetSenders) |
| 47 PROXY_CONSTMETHOD0(RtpReceiverRefptrs, GetReceivers) |
46 PROXY_METHOD3(bool, GetStats, StatsObserver*, | 48 PROXY_METHOD3(bool, GetStats, StatsObserver*, |
47 MediaStreamTrackInterface*, | 49 MediaStreamTrackInterface*, |
48 StatsOutputLevel) | 50 StatsOutputLevel) |
49 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>, | 51 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>, |
50 CreateDataChannel, const std::string&, const DataChannelInit*) | 52 CreateDataChannel, const std::string&, const DataChannelInit*) |
51 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description) | 53 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description) |
52 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description) | 54 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description) |
53 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, | 55 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, |
54 const MediaConstraintsInterface*) | 56 const MediaConstraintsInterface*) |
55 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, | 57 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, |
56 const MediaConstraintsInterface*) | 58 const MediaConstraintsInterface*) |
57 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*, | 59 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*, |
58 SessionDescriptionInterface*) | 60 SessionDescriptionInterface*) |
59 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*, | 61 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*, |
60 SessionDescriptionInterface*) | 62 SessionDescriptionInterface*) |
61 PROXY_METHOD2(bool, UpdateIce, const IceServers&, | 63 PROXY_METHOD2(bool, UpdateIce, const IceServers&, |
62 const MediaConstraintsInterface*) | 64 const MediaConstraintsInterface*) |
63 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) | 65 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) |
64 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) | 66 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) |
65 PROXY_METHOD0(SignalingState, signaling_state) | 67 PROXY_METHOD0(SignalingState, signaling_state) |
66 PROXY_METHOD0(IceState, ice_state) | 68 PROXY_METHOD0(IceState, ice_state) |
67 PROXY_METHOD0(IceConnectionState, ice_connection_state) | 69 PROXY_METHOD0(IceConnectionState, ice_connection_state) |
68 PROXY_METHOD0(IceGatheringState, ice_gathering_state) | 70 PROXY_METHOD0(IceGatheringState, ice_gathering_state) |
69 PROXY_METHOD0(void, Close) | 71 PROXY_METHOD0(void, Close) |
70 END_PROXY() | 72 END_PROXY() |
71 | 73 |
72 } // namespace webrtc | 74 } // namespace webrtc |
73 | 75 |
74 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_ | 76 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_ |
OLD | NEW |