| Index: net/http/http_stream_factory_impl.h
|
| diff --git a/net/http/http_stream_factory_impl.h b/net/http/http_stream_factory_impl.h
|
| index 6074edce4e19dd17e2f0bf94a8581a872ee344ca..d9211d14c198db959fd2763fb58738619bb5f200 100644
|
| --- a/net/http/http_stream_factory_impl.h
|
| +++ b/net/http/http_stream_factory_impl.h
|
| @@ -8,9 +8,8 @@
|
| #include <stddef.h>
|
|
|
| #include <map>
|
| -#include <memory>
|
| #include <set>
|
| -#include <string>
|
| +#include <vector>
|
|
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| @@ -45,17 +44,16 @@
|
| ~HttpStreamFactoryImpl() override;
|
|
|
| // HttpStreamFactory interface
|
| - std::unique_ptr<HttpStreamRequest> RequestStream(
|
| - const HttpRequestInfo& info,
|
| - RequestPriority priority,
|
| - const SSLConfig& server_ssl_config,
|
| - const SSLConfig& proxy_ssl_config,
|
| - HttpStreamRequest::Delegate* delegate,
|
| - bool enable_ip_based_pooling,
|
| - bool enable_alternative_services,
|
| - const NetLogWithSource& net_log) override;
|
| -
|
| - std::unique_ptr<HttpStreamRequest> RequestWebSocketHandshakeStream(
|
| + HttpStreamRequest* RequestStream(const HttpRequestInfo& info,
|
| + RequestPriority priority,
|
| + const SSLConfig& server_ssl_config,
|
| + const SSLConfig& proxy_ssl_config,
|
| + HttpStreamRequest::Delegate* delegate,
|
| + bool enable_ip_based_pooling,
|
| + bool enable_alternative_services,
|
| + const NetLogWithSource& net_log) override;
|
| +
|
| + HttpStreamRequest* RequestWebSocketHandshakeStream(
|
| const HttpRequestInfo& info,
|
| RequestPriority priority,
|
| const SSLConfig& server_ssl_config,
|
| @@ -66,7 +64,7 @@
|
| bool enable_alternative_services,
|
| const NetLogWithSource& net_log) override;
|
|
|
| - std::unique_ptr<HttpStreamRequest> RequestBidirectionalStreamImpl(
|
| + HttpStreamRequest* RequestBidirectionalStreamImpl(
|
| const HttpRequestInfo& info,
|
| RequestPriority priority,
|
| const SSLConfig& server_ssl_config,
|
| @@ -122,7 +120,7 @@
|
| MAX_ALTERNATIVE_SERVICE_TYPE
|
| };
|
|
|
| - std::unique_ptr<HttpStreamRequest> RequestStreamInternal(
|
| + HttpStreamRequest* RequestStreamInternal(
|
| const HttpRequestInfo& info,
|
| RequestPriority priority,
|
| const SSLConfig& server_ssl_config,
|
|
|