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

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

Issue 2888303005: Add PeerConnectionInterface::UpdateCallBitrate. (Closed)
Patch Set: Implement SetBitrate in PeerConnectionInterface to avoid breaking chromium mock. Created 3 years, 6 months 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
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « webrtc/api/peerconnectioninterface.h ('k') | webrtc/call/call.h » ('j') | webrtc/call/call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698