Index: net/http/bidirectional_stream_request_info.h |
diff --git a/net/http/bidirectional_stream_request_info.h b/net/http/bidirectional_stream_request_info.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5beb0b4e0119fccfc511f590a42a676575c2969c |
--- /dev/null |
+++ b/net/http/bidirectional_stream_request_info.h |
@@ -0,0 +1,36 @@ |
+// Copyright 2015 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. |
+ |
+#ifndef NET_HTTP_BIDIRECTIONAL_STREAM_REQUEST_INFO_H_ |
+#define NET_HTTP_BIDIRECTIONAL_STREAM_REQUEST_INFO_H_ |
+ |
+#include <string> |
+ |
+#include "net/base/net_export.h" |
+#include "net/http/http_request_headers.h" |
+#include "url/gurl.h" |
+ |
+namespace net { |
+ |
+// Struct containing information needed to request a BidirectionalStream. |
+struct NET_EXPORT BidirectionalStreamRequestInfo { |
+ BidirectionalStreamRequestInfo(); |
+ ~BidirectionalStreamRequestInfo(); |
+ |
+ // The requested URL. |
+ GURL url; |
+ |
+ // The method to use (GET, POST, etc.). |
+ std::string method; |
+ |
+ // Any extra request headers (including User-Agent). |
+ HttpRequestHeaders extra_headers; |
+ |
+ // Whether END_STREAM should be set on the request HEADER frame. |
+ bool end_stream_on_headers; |
mef
2015/12/15 22:59:40
maybe add request_priority field here?
xunjieli
2015/12/16 00:26:09
Done.
|
+}; |
+ |
+} // namespace net |
+ |
+#endif // NET_HTTP_BIDIRECTIONAL_STREAM_REQUEST_INFO_H_ |