// 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_SOCKET_H_ #define NET_SOCKET_SOCKET_H_ #include <stdint.h> #include <set> #include <string> #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" #include "net/traffic_annotation/network_traffic_annotation.h" namespace net { class IOBuffer; // Represents a read/write socket. class NET_EXPORT Socket { … }; } // namespace net #endif // NET_SOCKET_SOCKET_H_