| Index: net/http/http_basic_stream.cc
|
| diff --git a/net/http/http_basic_stream.cc b/net/http/http_basic_stream.cc
|
| index 227ca971ce215fc87690deaf0a7441135d148c62..d7a9ce065646e27f190950139191610bc1d62643 100644
|
| --- a/net/http/http_basic_stream.cc
|
| +++ b/net/http/http_basic_stream.cc
|
| @@ -14,11 +14,8 @@
|
| namespace net {
|
|
|
| HttpBasicStream::HttpBasicStream(std::unique_ptr<ClientSocketHandle> connection,
|
| - bool using_proxy,
|
| - bool http_09_on_non_default_ports_enabled)
|
| - : state_(std::move(connection),
|
| - using_proxy,
|
| - http_09_on_non_default_ports_enabled) {}
|
| + bool using_proxy)
|
| + : state_(std::move(connection), using_proxy) {}
|
|
|
| HttpBasicStream::~HttpBasicStream() {}
|
|
|
| @@ -63,8 +60,7 @@ HttpStream* HttpBasicStream::RenewStreamForAuth() {
|
| // be extra-sure it doesn't touch the connection again, delete it here rather
|
| // than leaving it until the destructor is called.
|
| state_.DeleteParser();
|
| - return new HttpBasicStream(state_.ReleaseConnection(), state_.using_proxy(),
|
| - state_.http_09_on_non_default_ports_enabled());
|
| + return new HttpBasicStream(state_.ReleaseConnection(), state_.using_proxy());
|
| }
|
|
|
| bool HttpBasicStream::IsResponseBodyComplete() const {
|
|
|