blob: 34ea66e179d3688ff0011a7f8860e9cb299720a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// 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/base/request_priority.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;
// Request priority.
RequestPriority priority;
// 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_
|