Commit 3bf43306 authored by thakis's avatar thakis Committed by Commit bot

Remove unused QuicStreamRequest::is_https_ field.

No behavior change.

BUG=none

Review URL: https://codereview.chromium.org/985403002

Cr-Commit-Position: refs/heads/master@{#319584}
parent 3307d9d5
...@@ -550,7 +550,6 @@ int QuicStreamRequest::Request(const HostPortPair& host_port_pair, ...@@ -550,7 +550,6 @@ int QuicStreamRequest::Request(const HostPortPair& host_port_pair,
net_log, this); net_log, this);
if (rv == ERR_IO_PENDING) { if (rv == ERR_IO_PENDING) {
host_port_pair_ = host_port_pair; host_port_pair_ = host_port_pair;
is_https_ = is_https;
net_log_ = net_log; net_log_ = net_log;
callback_ = callback; callback_ = callback;
} else { } else {
......
...@@ -75,7 +75,6 @@ class NET_EXPORT_PRIVATE QuicStreamRequest { ...@@ -75,7 +75,6 @@ class NET_EXPORT_PRIVATE QuicStreamRequest {
private: private:
QuicStreamFactory* factory_; QuicStreamFactory* factory_;
HostPortPair host_port_pair_; HostPortPair host_port_pair_;
bool is_https_;
BoundNetLog net_log_; BoundNetLog net_log_;
CompletionCallback callback_; CompletionCallback callback_;
scoped_ptr<QuicHttpStream> stream_; scoped_ptr<QuicHttpStream> stream_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment