| Index: net/quic/chromium/quic_chromium_client_stream.h
|
| diff --git a/net/quic/chromium/quic_chromium_client_stream.h b/net/quic/chromium/quic_chromium_client_stream.h
|
| index f105154e5b130daae73e9d6b3892a7c3df87b822..e7513cade755687f4f0408a4d09f9594da4f2484 100644
|
| --- a/net/quic/chromium/quic_chromium_client_stream.h
|
| +++ b/net/quic/chromium/quic_chromium_client_stream.h
|
| @@ -59,7 +59,7 @@ class NET_EXPORT_PRIVATE QuicChromiumClientStream : public QuicSpdyStream {
|
|
|
| QuicChromiumClientStream(QuicStreamId id,
|
| QuicClientSessionBase* session,
|
| - const BoundNetLog& net_log);
|
| + const NetLogWithSource& net_log);
|
|
|
| ~QuicChromiumClientStream() override;
|
|
|
| @@ -113,7 +113,7 @@ class NET_EXPORT_PRIVATE QuicChromiumClientStream : public QuicSpdyStream {
|
| // it becomes writable.
|
| bool CanWrite(const CompletionCallback& callback);
|
|
|
| - const BoundNetLog& net_log() const { return net_log_; }
|
| + const NetLogWithSource& net_log() const { return net_log_; }
|
|
|
| // Prevents this stream from migrating to a new network. May cause other
|
| // concurrent streams within the session to also not migrate.
|
| @@ -135,7 +135,7 @@ class NET_EXPORT_PRIVATE QuicChromiumClientStream : public QuicSpdyStream {
|
| void NotifyDelegateOfDataAvailable();
|
| void RunOrBuffer(base::Closure closure);
|
|
|
| - BoundNetLog net_log_;
|
| + NetLogWithSource net_log_;
|
| Delegate* delegate_;
|
|
|
| bool headers_delivered_;
|
|
|