| Index: net/http/http_network_session.h
|
| diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
|
| index 5d0a7b9f7be86ec734c3bbdad1c9c08b932f1155..952a7d7bfada677f49b9965a3ad005c1ca192c87 100644
|
| --- a/net/http/http_network_session.h
|
| +++ b/net/http/http_network_session.h
|
| @@ -140,8 +140,8 @@ class NET_EXPORT HttpNetworkSession
|
| HttpStreamFactory* http_stream_factory() {
|
| return http_stream_factory_.get();
|
| }
|
| - HttpStreamFactory* websocket_handshake_stream_factory() {
|
| - return websocket_handshake_stream_factory_.get();
|
| + HttpStreamFactory* http_stream_factory_for_websocket() {
|
| + return http_stream_factory_for_websocket_.get();
|
| }
|
| NetLog* net_log() {
|
| return net_log_;
|
| @@ -197,7 +197,7 @@ class NET_EXPORT HttpNetworkSession
|
| QuicStreamFactory quic_stream_factory_;
|
| SpdySessionPool spdy_session_pool_;
|
| scoped_ptr<HttpStreamFactory> http_stream_factory_;
|
| - scoped_ptr<HttpStreamFactory> websocket_handshake_stream_factory_;
|
| + scoped_ptr<HttpStreamFactory> http_stream_factory_for_websocket_;
|
| std::set<HttpResponseBodyDrainer*> response_drainers_;
|
|
|
| Params params_;
|
|
|