From 83ee98292f2b179e2d38cc4043b02238aa2236db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Tue, 10 Dec 2019 14:04:15 +0100 Subject: [PATCH] Delete p2p/base/packet_transport_interface.h This file only defined an unused alias. Bug: None Change-Id: I0c731401295814e8f5dd91f41350973021efd5d5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/155173 Reviewed-by: Steve Anton Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#30138} --- p2p/BUILD.gn | 1 - p2p/base/packet_transport_interface.h | 24 ------------------------ 2 files changed, 25 deletions(-) delete mode 100644 p2p/base/packet_transport_interface.h diff --git a/p2p/BUILD.gn b/p2p/BUILD.gn index 747609e1ca..2b01cef6f4 100644 --- a/p2p/BUILD.gn +++ b/p2p/BUILD.gn @@ -52,7 +52,6 @@ rtc_library("rtc_p2p") { "base/p2p_transport_channel.cc", "base/p2p_transport_channel.h", "base/p2p_transport_channel_ice_field_trials.h", - "base/packet_transport_interface.h", "base/packet_transport_internal.cc", "base/packet_transport_internal.h", "base/port.cc", diff --git a/p2p/base/packet_transport_interface.h b/p2p/base/packet_transport_interface.h deleted file mode 100644 index 7076c30794..0000000000 --- a/p2p/base/packet_transport_interface.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright 2017 The WebRTC Project Authors. All rights reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - -// This exists for backwards compatibility with chromium remoting code that -// uses it. -// TODO(deadbeef): Update chromium and remove this file. - -#ifndef P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_ -#define P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_ - -#include "p2p/base/packet_transport_internal.h" - -namespace rtc { -typedef PacketTransportInternal PacketTransportInterface; -} - -#endif // P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_