Remove p2p/base/jseptransport.h.

Was just being kept around until downstream dependents were updated
to include other files.

BUG=None

Change-Id: I26f0bea83c026be8a50a259c229ef8e7445825ad
Reviewed-on: https://webrtc-review.googlesource.com/35009
Reviewed-by: Peter Thatcher <pthatcher@webrtc.org>
Commit-Queue: Taylor Brandstetter <deadbeef@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21395}
This commit is contained in:
Taylor Brandstetter 2017-12-19 16:42:59 -08:00 committed by Commit Bot
parent 7ed2af5b46
commit e7f769c440
2 changed files with 0 additions and 46 deletions

View File

@ -33,7 +33,6 @@ rtc_static_library("rtc_p2p") {
"base/dtlstransportinternal.h",
"base/icetransportinternal.cc",
"base/icetransportinternal.h",
"base/jseptransport.h",
"base/p2pconstants.cc",
"base/p2pconstants.h",
"base/p2ptransportchannel.cc",

View File

@ -1,45 +0,0 @@
/*
* Copyright 2004 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.
*/
#ifndef P2P_BASE_JSEPTRANSPORT_H_
#define P2P_BASE_JSEPTRANSPORT_H_
#include <vector>
// TODO(deadbeef): This file used to be a dumping ground of various enums,
// structs, etc., which have now moved to their own files. Delete this file
// once no one is depending on it, and they start including the more specific
// file(s) instead.
#include "api/candidate.h"
// DTLS enums/structs.
#include "p2p/base/dtlstransport.h"
#include "p2p/base/dtlstransportinternal.h"
// ICE enums/structs.
#include "p2p/base/icetransportinternal.h"
// Various constants.
#include "p2p/base/p2pconstants.h"
// ConnectionInfo, among many other things.
#include "p2p/base/port.h"
// SDP structures
#include "p2p/base/sessiondescription.h"
#include "p2p/base/transportinfo.h"
// Legacy typedef.
namespace cricket {
typedef std::vector<Candidate> Candidates;
}
#endif // P2P_BASE_JSEPTRANSPORT_H_