Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: webrtc/api/peerconnectionproxy.h

Issue 2590753002: Implement current/pending session description methods. (Closed)
Patch Set: Fixing null pointer deref. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/api/peerconnectioninterface_unittest.cc ('k') | webrtc/api/webrtcsession.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 29 matching lines...) Expand all
40 PROXY_CONSTMETHOD0(std::vector<rtc::scoped_refptr<RtpReceiverInterface>>, 40 PROXY_CONSTMETHOD0(std::vector<rtc::scoped_refptr<RtpReceiverInterface>>,
41 GetReceivers) 41 GetReceivers)
42 PROXY_METHOD3(bool, GetStats, StatsObserver*, 42 PROXY_METHOD3(bool, GetStats, StatsObserver*,
43 MediaStreamTrackInterface*, 43 MediaStreamTrackInterface*,
44 StatsOutputLevel) 44 StatsOutputLevel)
45 PROXY_METHOD1(void, GetStats, RTCStatsCollectorCallback*) 45 PROXY_METHOD1(void, GetStats, RTCStatsCollectorCallback*)
46 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>, 46 PROXY_METHOD2(rtc::scoped_refptr<DataChannelInterface>,
47 CreateDataChannel, const std::string&, const DataChannelInit*) 47 CreateDataChannel, const std::string&, const DataChannelInit*)
48 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description) 48 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, local_description)
49 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description) 49 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*, remote_description)
50 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*,
51 pending_local_description)
52 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*,
53 pending_remote_description)
54 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*,
55 current_local_description)
56 PROXY_CONSTMETHOD0(const SessionDescriptionInterface*,
57 current_remote_description)
50 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, 58 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*,
51 const MediaConstraintsInterface*) 59 const MediaConstraintsInterface*)
52 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, 60 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*,
53 const MediaConstraintsInterface*) 61 const MediaConstraintsInterface*)
54 PROXY_METHOD2(void, 62 PROXY_METHOD2(void,
55 CreateOffer, 63 CreateOffer,
56 CreateSessionDescriptionObserver*, 64 CreateSessionDescriptionObserver*,
57 const RTCOfferAnswerOptions&) 65 const RTCOfferAnswerOptions&)
58 PROXY_METHOD2(void, 66 PROXY_METHOD2(void,
59 CreateAnswer, 67 CreateAnswer,
(...skipping 16 matching lines...) Expand all
76 PROXY_METHOD0(IceConnectionState, ice_connection_state) 84 PROXY_METHOD0(IceConnectionState, ice_connection_state)
77 PROXY_METHOD0(IceGatheringState, ice_gathering_state) 85 PROXY_METHOD0(IceGatheringState, ice_gathering_state)
78 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) 86 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t)
79 PROXY_METHOD0(void, StopRtcEventLog) 87 PROXY_METHOD0(void, StopRtcEventLog)
80 PROXY_METHOD0(void, Close) 88 PROXY_METHOD0(void, Close)
81 END_SIGNALING_PROXY() 89 END_SIGNALING_PROXY()
82 90
83 } // namespace webrtc 91 } // namespace webrtc
84 92
85 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ 93 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_
OLDNEW
« no previous file with comments | « webrtc/api/peerconnectioninterface_unittest.cc ('k') | webrtc/api/webrtcsession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698