summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/api/packet_socket_factory.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /third_party/libwebrtc/api/packet_socket_factory.h
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-upstream/125.0.1.tar.xz
firefox-upstream/125.0.1.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/api/packet_socket_factory.h')
-rw-r--r--third_party/libwebrtc/api/packet_socket_factory.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/third_party/libwebrtc/api/packet_socket_factory.h b/third_party/libwebrtc/api/packet_socket_factory.h
index e389ccb2ff..78b93b539c 100644
--- a/third_party/libwebrtc/api/packet_socket_factory.h
+++ b/third_party/libwebrtc/api/packet_socket_factory.h
@@ -16,7 +16,6 @@
#include <vector>
#include "api/async_dns_resolver.h"
-#include "api/wrapping_async_dns_resolver.h"
#include "rtc_base/async_packet_socket.h"
#include "rtc_base/proxy_info.h"
#include "rtc_base/system/rtc_export.h"
@@ -72,26 +71,8 @@ class RTC_EXPORT PacketSocketFactory {
const std::string& user_agent,
const PacketSocketTcpOptions& tcp_options) = 0;
- // The AsyncResolverInterface is deprecated; users are encouraged
- // to switch to the AsyncDnsResolverInterface.
- // TODO(bugs.webrtc.org/12598): Remove once all downstream users
- // are converted.
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wdeprecated-declarations"
- [[deprecated]] virtual AsyncResolverInterface* CreateAsyncResolver() {
- // Default implementation, so that downstream users can remove this
- // immediately after changing to CreateAsyncDnsResolver
- RTC_DCHECK_NOTREACHED();
- return nullptr;
- }
-
virtual std::unique_ptr<webrtc::AsyncDnsResolverInterface>
- CreateAsyncDnsResolver() {
- // Default implementation, to aid in transition to AsyncDnsResolverInterface
- return std::make_unique<webrtc::WrappingAsyncDnsResolver>(
- CreateAsyncResolver());
- }
-#pragma clang diagnostic pop
+ CreateAsyncDnsResolver() = 0;
private:
PacketSocketFactory(const PacketSocketFactory&) = delete;