// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_WEBSOCKET_HANDSHAKE_REQUEST_INFO_H_ #define CONTENT_PUBLIC_BROWSER_WEBSOCKET_HANDSHAKE_REQUEST_INFO_H_ #include "content/common/content_export.h" namespace net { class URLRequest; } // namespace net namespace content { // WebSocketHandshakeRequestInfo provides additional information attached to // a net::URLRequest. class WebSocketHandshakeRequestInfo { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_WEBSOCKET_HANDSHAKE_REQUEST_INFO_H_