Index: net/http/http_stream_factory.h |
diff --git a/net/http/http_stream_factory.h b/net/http/http_stream_factory.h |
index d6e7127de3ef61a48a760f3e6f8bc3af3abb5d93..957cb4352f753b9c000257b9cad2e2b3a26c7c85 100644 |
--- a/net/http/http_stream_factory.h |
+++ b/net/http/http_stream_factory.h |
@@ -31,7 +31,7 @@ class Value; |
namespace net { |
class AuthCredentials; |
-class BoundNetLog; |
+class NetLogWithSource; |
class BidirectionalStreamImpl; |
class HostMappingRules; |
class HostPortPair; |
@@ -212,7 +212,7 @@ class NET_EXPORT HttpStreamFactory { |
const SSLConfig& server_ssl_config, |
const SSLConfig& proxy_ssl_config, |
HttpStreamRequest::Delegate* delegate, |
- const BoundNetLog& net_log) = 0; |
+ const NetLogWithSource& net_log) = 0; |
// Request a WebSocket handshake stream. |
// Will call delegate->OnWebSocketHandshakeStreamReady on successful |
@@ -224,7 +224,7 @@ class NET_EXPORT HttpStreamFactory { |
const SSLConfig& proxy_ssl_config, |
HttpStreamRequest::Delegate* delegate, |
WebSocketHandshakeStreamBase::CreateHelper* create_helper, |
- const BoundNetLog& net_log) = 0; |
+ const NetLogWithSource& net_log) = 0; |
// Request a BidirectionalStreamImpl. |
// Will call delegate->OnBidirectionalStreamImplReady on successful |
@@ -235,7 +235,7 @@ class NET_EXPORT HttpStreamFactory { |
const SSLConfig& server_ssl_config, |
const SSLConfig& proxy_ssl_config, |
HttpStreamRequest::Delegate* delegate, |
- const BoundNetLog& net_log) = 0; |
+ const NetLogWithSource& net_log) = 0; |
// Requests that enough connections for |num_streams| be opened. |
virtual void PreconnectStreams(int num_streams, |