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}
diff --git a/p2p/BUILD.gn b/p2p/BUILD.gn
index f80352d..53fe57c 100644
--- a/p2p/BUILD.gn
+++ b/p2p/BUILD.gn
@@ -33,7 +33,6 @@
     "base/dtlstransportinternal.h",
     "base/icetransportinternal.cc",
     "base/icetransportinternal.h",
-    "base/jseptransport.h",
     "base/p2pconstants.cc",
     "base/p2pconstants.h",
     "base/p2ptransportchannel.cc",
diff --git a/p2p/base/jseptransport.h b/p2p/base/jseptransport.h
deleted file mode 100644
index 3af3634..0000000
--- a/p2p/base/jseptransport.h
+++ /dev/null
@@ -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_