blob: f957ae66135d51eff2086b8ed1b21381042d95a2 [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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020015#ifndef P2P_BASE_PACKETTRANSPORTINTERFACE_H_
16#define P2P_BASE_PACKETTRANSPORTINTERFACE_H_
johana9c7cfa2016-10-18 15:38:38 -070017
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "p2p/base/packettransportinternal.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
deadbeef5bd5ca32017-02-10 11:31:50 -080024#endif