// 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_SOCKET_H_ #define NET_SOCKET_DATAGRAM_SOCKET_H_ #include "net/base/net_export.h" #include "net/socket/diff_serv_code_point.h" namespace net { class IPEndPoint; class NetLogWithSource; // A datagram socket is an interface to a protocol which exchanges // datagrams, like UDP. class NET_EXPORT_PRIVATE DatagramSocket { … }; } // namespace net #endif // NET_SOCKET_DATAGRAM_SOCKET_H_