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

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

Issue 2996643002: BWE allocation strategy
Patch Set: BWE allocation strategy Created 3 years, 3 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_METHOD1(RTCError, SetBitrate, const BitrateParameters&);
104 PROXY_METHOD1(RTCError,
105 SetBitrateAllocationStrategy,
106 rtc::BitrateAllocationStrategy*);
104 PROXY_METHOD0(SignalingState, signaling_state) 107 PROXY_METHOD0(SignalingState, signaling_state)
105 PROXY_METHOD0(IceConnectionState, ice_connection_state) 108 PROXY_METHOD0(IceConnectionState, ice_connection_state)
106 PROXY_METHOD0(IceGatheringState, ice_gathering_state) 109 PROXY_METHOD0(IceGatheringState, ice_gathering_state)
107 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t) 110 PROXY_METHOD2(bool, StartRtcEventLog, rtc::PlatformFile, int64_t)
108 PROXY_METHOD0(void, StopRtcEventLog) 111 PROXY_METHOD0(void, StopRtcEventLog)
109 PROXY_METHOD0(void, Close) 112 PROXY_METHOD0(void, Close)
110 END_PROXY_MAP() 113 END_PROXY_MAP()
111 114
112 } // namespace webrtc 115 } // namespace webrtc
113 116
114 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_ 117 #endif // WEBRTC_API_PEERCONNECTIONPROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698