Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Unified Diff: net/http/bidirectional_stream_request_info.h

Issue 1326503003: Added a net::BidirectionalStream to expose a bidirectional streaming interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments and moved tests Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..7acc3fa9945995e0cf098e7d8b50bd5c291f907b
--- /dev/null
+++ b/net/http/bidirectional_stream_request_info.h
@@ -0,0 +1,34 @@
+// 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 {
mef 2015/12/14 17:59:01 nit: add newline.
xunjieli 2015/12/14 19:34:41 Done.
+struct NET_EXPORT BidirectionalStreamRequestInfo {
mef 2015/12/14 17:59:01 I think we need a description for publicly exporte
xunjieli 2015/12/14 19:34:41 Done.
+ 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;
+};
+
+} // namespace net
+
+#endif // NET_HTTP_BIDIRECTIONAL_STREAM_REQUEST_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698