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

Unified Diff: net/spdy/spdy_session_pool.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/spdy/spdy_session_pool.h
diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h
index eaefdcb49994b4ef9325864b1ae233729f8e4a23..a642c3a0ae355ac6a1ecda2a8c4d3e1054b99f18 100644
--- a/net/spdy/spdy_session_pool.h
+++ b/net/spdy/spdy_session_pool.h
@@ -29,7 +29,7 @@
namespace net {
class AddressList;
-class BoundNetLog;
+class NetLogWithSource;
class ClientSocketHandle;
class HostResolver;
class HttpServerProperties;
@@ -79,16 +79,17 @@ class NET_EXPORT SpdySessionPool
base::WeakPtr<SpdySession> CreateAvailableSessionFromSocket(
const SpdySessionKey& key,
std::unique_ptr<ClientSocketHandle> connection,
- const BoundNetLog& net_log,
+ const NetLogWithSource& net_log,
int certificate_error_code,
bool is_secure);
// Return an available session for |key| that has an unclaimed push stream for
// |url| if such exists and |url| is not empty, or else an available session
// for |key| if such exists, or else nullptr.
- base::WeakPtr<SpdySession> FindAvailableSession(const SpdySessionKey& key,
- const GURL& url,
- const BoundNetLog& net_log);
+ base::WeakPtr<SpdySession> FindAvailableSession(
+ const SpdySessionKey& key,
+ const GURL& url,
+ const NetLogWithSource& net_log);
// Remove all mappings and aliases for the given session, which must
// still be available. Except for in tests, this must be called by

Powered by Google App Engine
This is Rietveld 408576698