aboutsummaryrefslogtreecommitdiff
path: root/pc
diff options
context:
space:
mode:
authorHarald Alvestrand <hta@webrtc.org>2020-02-24 15:19:05 +0100
committerCommit Bot <commit-bot@chromium.org>2020-02-26 07:49:36 +0000
commit8a24c03663b2da5ab341a1dc46c3d0e933681d7a (patch)
treee337c538a19be4e59287ec28a1a421ae503a2be0 /pc
parent7f68bcb4b5a9b5a616d9d6a8c26e2c389ecbe06a (diff)
downloadwebrtc-8a24c03663b2da5ab341a1dc46c3d0e933681d7a.tar.gz
Remove deprecated AddContent function in session_description.h
Bug: webrtc:10701 Change-Id: Ia1b8e5585c777d8f4c308bb8e4baffe752477057 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/168950 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30615}
Diffstat (limited to 'pc')
-rw-r--r--pc/session_description.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/pc/session_description.h b/pc/session_description.h
index 7546d12bcb..7aaf259027 100644
--- a/pc/session_description.h
+++ b/pc/session_description.h
@@ -541,29 +541,6 @@ class SessionDescription {
bool bundle_only,
std::unique_ptr<MediaContentDescription> description);
void AddContent(ContentInfo&& content);
- RTC_DEPRECATED void AddContent(const std::string& name,
- MediaProtocolType type,
- MediaContentDescription* description) {
- AddContent(name, type, absl::WrapUnique(description));
- }
- RTC_DEPRECATED void AddContent(const std::string& name,
- MediaProtocolType type,
- bool rejected,
- MediaContentDescription* description) {
- AddContent(name, type, rejected, absl::WrapUnique(description));
- }
- RTC_DEPRECATED void AddContent(const std::string& name,
- MediaProtocolType type,
- bool rejected,
- bool bundle_only,
- MediaContentDescription* description) {
- AddContent(name, type, rejected, bundle_only,
- absl::WrapUnique(description));
- }
-
- RTC_DEPRECATED void AddContent(ContentInfo* content) {
- AddContent(std::move(*content));
- }
bool RemoveContentByName(const std::string& name);