summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/common/p2p_socket_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/common/p2p_socket_type.h')
-rw-r--r--chromium/content/public/common/p2p_socket_type.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/content/public/common/p2p_socket_type.h b/chromium/content/public/common/p2p_socket_type.h
deleted file mode 100644
index a272f8c075c..00000000000
--- a/chromium/content/public/common/p2p_socket_type.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file defines some basic types used by the P2P-related IPC
-// messages.
-
-#ifndef CONTENT_PUBLIC_COMMON_P2P_SOCKET_TYPE_H_
-#define CONTENT_PUBLIC_COMMON_P2P_SOCKET_TYPE_H_
-
-namespace content {
-
-// Type of P2P Socket.
-enum P2PSocketType {
- P2P_SOCKET_UDP,
- P2P_SOCKET_TCP_SERVER,
- P2P_SOCKET_STUN_TCP_SERVER,
- P2P_SOCKET_TCP_CLIENT,
- P2P_SOCKET_STUN_TCP_CLIENT,
- P2P_SOCKET_SSLTCP_CLIENT,
- P2P_SOCKET_STUN_SSLTCP_CLIENT,
- P2P_SOCKET_TLS_CLIENT,
- P2P_SOCKET_STUN_TLS_CLIENT,
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_COMMON_P2P_SOCKET_TYPE_H_