[content shell] hook up testRunner.dumpEditingCallbacks
[chromium-blink-merge.git] / content / common / p2p_sockets.h
blobf24d2ac304768bb223f3892f4a2f1106c5965f20
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This file defines some basic types used by the P2P-related IPC
6 // messages.
8 #ifndef CONTENT_COMMON_P2P_SOCKETS_H_
9 #define CONTENT_COMMON_P2P_SOCKETS_H_
11 namespace content {
13 // Type of P2P Socket.
14 enum P2PSocketType {
15 P2P_SOCKET_UDP,
16 P2P_SOCKET_TCP_SERVER,
17 P2P_SOCKET_TCP_CLIENT,
20 } // namespace content
22 #endif // CONTENT_COMMON_P2P_SOCKETS_H_