// 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_HTTP_HTTP_BYTE_RANGE_H_ #define NET_HTTP_HTTP_BYTE_RANGE_H_ #include <stdint.h> #include <string> #include "net/base/net_export.h" namespace net { // A container class that represents a "range" specified for range request // specified by RFC 7233 Section 2.1. // https://tools.ietf.org/html/rfc7233#section-2.1 class NET_EXPORT HttpByteRange { … }; } // namespace net #endif // NET_HTTP_HTTP_BYTE_RANGE_H_