chromium/content/browser/websockets/websocket_handshake_request_info_impl.h

// 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_BROWSER_WEBSOCKETS_WEBSOCKET_HANDSHAKE_REQUEST_INFO_IMPL_H_
#define CONTENT_BROWSER_WEBSOCKETS_WEBSOCKET_HANDSHAKE_REQUEST_INFO_IMPL_H_

#include "content/public/browser/websocket_handshake_request_info.h"

#include "base/supports_user_data.h"

namespace content {

class WebSocketHandshakeRequestInfoImpl final
    : public WebSocketHandshakeRequestInfo,
      public base::SupportsUserData::Data {};

}  // namespace content

#endif  // CONTENT_BROWSER_WEBSOCKETS_WEBSOCKET_HANDSHAKE_REQUEST_INFO_IMPL_H_