Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: net/quic/chromium/quic_chromium_client_stream.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698