xref: /aosp_15_r20/external/cronet/net/websockets/websocket_handshake_request_info.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/websockets/websocket_handshake_request_info.h"
6 
7 #include "base/time/time.h"
8 
9 namespace net {
10 
WebSocketHandshakeRequestInfo(const GURL & url,base::Time request_time)11 WebSocketHandshakeRequestInfo::WebSocketHandshakeRequestInfo(
12     const GURL& url,
13     base::Time request_time)
14     : url(url), request_time(request_time) {}
15 
16 WebSocketHandshakeRequestInfo::~WebSocketHandshakeRequestInfo() = default;
17 
18 }  // namespace net
19