johan | a9c7cfa | 2016-10-18 15:38:38 -0700 | [diff] [blame] | 1 | /* |
deadbeef | 5bd5ca3 | 2017-02-10 11:31:50 -0800 | [diff] [blame] | 2 | * Copyright 2017 The WebRTC Project Authors. All rights reserved. |
johan | a9c7cfa | 2016-10-18 15:38:38 -0700 | [diff] [blame] | 3 | * |
| 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 | |
deadbeef | 5bd5ca3 | 2017-02-10 11:31:50 -0800 | [diff] [blame] | 11 | // This exists for backwards compatibility with chromium remoting code that |
| 12 | // uses it. |
| 13 | // TODO(deadbeef): Update chromium and remove this file. |
| 14 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 15 | #ifndef P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_ |
| 16 | #define P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_ |
johan | a9c7cfa | 2016-10-18 15:38:38 -0700 | [diff] [blame] | 17 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 18 | #include "p2p/base/packet_transport_internal.h" |
johan | a9c7cfa | 2016-10-18 15:38:38 -0700 | [diff] [blame] | 19 | |
| 20 | namespace rtc { |
deadbeef | 5bd5ca3 | 2017-02-10 11:31:50 -0800 | [diff] [blame] | 21 | typedef PacketTransportInternal PacketTransportInterface; |
| 22 | } |
johan | d89ab14 | 2016-10-25 10:50:32 -0700 | [diff] [blame] | 23 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 24 | #endif // P2P_BASE_PACKET_TRANSPORT_INTERFACE_H_ |