blob: 7076c30794bd5c8b25e4d840b5bcea9fc567b579 [file] [log] [blame]
johana9c7cfa2016-10-18 15:38:38 -07001/*
deadbeef5bd5ca32017-02-10 11:31:50 -08002 * Copyright 2017 The WebRTC Project Authors. All rights reserved.
johana9c7cfa2016-10-18 15:38:38 -07003 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
deadbeef5bd5ca32017-02-10 11:31:50 -080011// This exists for backwards compatibility with chromium remoting code that
12// uses it.
13// TODO(deadbeef): Update chromium and remove this file.
14
Steve Anton10542f22019-01-11 09:11:00 -080015#ifndef P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_
16#define P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_
johana9c7cfa2016-10-18 15:38:38 -070017
Steve Anton10542f22019-01-11 09:11:00 -080018#include "p2p/base/packet_transport_internal.h"
johana9c7cfa2016-10-18 15:38:38 -070019
20namespace rtc {
deadbeef5bd5ca32017-02-10 11:31:50 -080021typedef PacketTransportInternal PacketTransportInterface;
22}
johand89ab142016-10-25 10:50:32 -070023
Steve Anton10542f22019-01-11 09:11:00 -080024#endif // P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_