// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_SOCKET_DATAGRAM_CLIENT_SOCKET_H_ #define NET_SOCKET_DATAGRAM_CLIENT_SOCKET_H_ #include "net/base/datagram_buffer.h" #include "net/base/net_export.h" #include "net/base/network_handle.h" #include "net/socket/datagram_socket.h" #include "net/socket/socket.h" namespace net { class IPEndPoint; class SocketTag; class NET_EXPORT_PRIVATE DatagramClientSocket : public DatagramSocket, public Socket { … }; } // namespace net #endif // NET_SOCKET_DATAGRAM_CLIENT_SOCKET_H_