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

Side by Side Diff: webrtc/pc/channel.h

Issue 1984983002: Remove use of RtpHeaderExtension and clean up (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed nit Created 4 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 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2004 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 ContentSource src, 275 ContentSource src,
276 std::string* error_desc); 276 std::string* error_desc);
277 bool SetRtpTransportParameters_n(const MediaContentDescription* content, 277 bool SetRtpTransportParameters_n(const MediaContentDescription* content,
278 ContentAction action, 278 ContentAction action,
279 ContentSource src, 279 ContentSource src,
280 std::string* error_desc); 280 std::string* error_desc);
281 281
282 // Helper method to get RTP Absoulute SendTime extension header id if 282 // Helper method to get RTP Absoulute SendTime extension header id if
283 // present in remote supported extensions list. 283 // present in remote supported extensions list.
284 void MaybeCacheRtpAbsSendTimeHeaderExtension_w( 284 void MaybeCacheRtpAbsSendTimeHeaderExtension_w(
285 const std::vector<RtpHeaderExtension>& extensions); 285 const std::vector<webrtc::RtpExtension>& extensions);
286 286
287 bool CheckSrtpConfig_n(const std::vector<CryptoParams>& cryptos, 287 bool CheckSrtpConfig_n(const std::vector<CryptoParams>& cryptos,
288 bool* dtls, 288 bool* dtls,
289 std::string* error_desc); 289 std::string* error_desc);
290 bool SetSrtp_n(const std::vector<CryptoParams>& params, 290 bool SetSrtp_n(const std::vector<CryptoParams>& params,
291 ContentAction action, 291 ContentAction action,
292 ContentSource src, 292 ContentSource src,
293 std::string* error_desc); 293 std::string* error_desc);
294 void ActivateRtcpMux_n(); 294 void ActivateRtcpMux_n();
295 bool SetRtcpMux_n(bool enable, 295 bool SetRtcpMux_n(bool enable,
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 // SetSendParameters. 672 // SetSendParameters.
673 DataSendParameters last_send_params_; 673 DataSendParameters last_send_params_;
674 // Last DataRecvParameters sent down to the media_channel() via 674 // Last DataRecvParameters sent down to the media_channel() via
675 // SetRecvParameters. 675 // SetRecvParameters.
676 DataRecvParameters last_recv_params_; 676 DataRecvParameters last_recv_params_;
677 }; 677 };
678 678
679 } // namespace cricket 679 } // namespace cricket
680 680
681 #endif // WEBRTC_PC_CHANNEL_H_ 681 #endif // WEBRTC_PC_CHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698