diff --git a/rtc_base/socket_factory.h b/rtc_base/socket_factory.h index b43bd1bf31..882b44faf2 100644 --- a/rtc_base/socket_factory.h +++ b/rtc_base/socket_factory.h @@ -21,10 +21,6 @@ class SocketFactory { // Returns a new socket. The type can be SOCK_DGRAM and SOCK_STREAM. virtual Socket* CreateSocket(int family, int type) = 0; - // TODO(nisse): Delete old alias, ASAP when downstream code is updated. - virtual Socket* CreateAsyncSocket(int family, int type) { - return CreateSocket(family, type); - } }; } // namespace rtc