| Index: net/quic/quic_stream_factory.h
|
| diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
|
| index c98b386dde4e13b49d2230fd98043f0423ff7156..919f9ea784f3a86fe6a7ecb8ee791141866dc51c 100644
|
| --- a/net/quic/quic_stream_factory.h
|
| +++ b/net/quic/quic_stream_factory.h
|
| @@ -76,7 +76,7 @@ class NET_EXPORT_PRIVATE QuicStreamRequest {
|
| int Request(const HostPortPair& host_port_pair,
|
| PrivacyMode privacy_mode,
|
| int cert_verify_flags,
|
| - base::StringPiece origin_host,
|
| + const GURL& url,
|
| base::StringPiece method,
|
| const BoundNetLog& net_log,
|
| const CompletionCallback& callback);
|
| @@ -101,6 +101,7 @@ class NET_EXPORT_PRIVATE QuicStreamRequest {
|
| QuicStreamFactory* factory_;
|
| HostPortPair host_port_pair_;
|
| std::string origin_host_;
|
| + string url_;
|
| PrivacyMode privacy_mode_;
|
| BoundNetLog net_log_;
|
| CompletionCallback callback_;
|
| @@ -172,7 +173,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
| int Create(const HostPortPair& host_port_pair,
|
| PrivacyMode privacy_mode,
|
| int cert_verify_flags,
|
| - base::StringPiece origin_host,
|
| + const GURL& url,
|
| base::StringPiece method,
|
| const BoundNetLog& net_log,
|
| QuicStreamRequest* request);
|
| @@ -528,6 +529,8 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
|
|
|
| NetworkConnection network_connection_;
|
|
|
| + int num_push_streams_created_;
|
| +
|
| QuicClientPushPromiseIndex push_promise_index_;
|
|
|
| base::TaskRunner* task_runner_;
|
|
|