summaryrefslogtreecommitdiffstats
path: root/chromium/net/websockets/websocket_handshake_request_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/websockets/websocket_handshake_request_info.cc')
-rw-r--r--chromium/net/websockets/websocket_handshake_request_info.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/chromium/net/websockets/websocket_handshake_request_info.cc b/chromium/net/websockets/websocket_handshake_request_info.cc
new file mode 100644
index 00000000000..7acd4d0433c
--- /dev/null
+++ b/chromium/net/websockets/websocket_handshake_request_info.cc
@@ -0,0 +1,19 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/websockets/websocket_handshake_request_info.h"
+
+#include "base/time/time.h"
+#include "url/gurl.h"
+
+namespace net {
+
+WebSocketHandshakeRequestInfo::WebSocketHandshakeRequestInfo(
+ const GURL& url,
+ base::Time request_time)
+ : url(url), request_time(request_time) {}
+
+WebSocketHandshakeRequestInfo::~WebSocketHandshakeRequestInfo() {}
+
+} // namespace net