// Copyright 2006-2008 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_VERSION_H_ #define NET_HTTP_HTTP_VERSION_H_ #include <stdint.h> namespace net { // Wrapper for an HTTP (major,minor) version pair. // This type is final as the type is copy-constructable and assignable and so // there is a risk of slicing if it was subclassed. class HttpVersion final { … }; } // namespace net #endif // NET_HTTP_HTTP_VERSION_H_