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

Unified Diff: net/socket/websocket_endpoint_lock_manager_unittest.cc

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/socket/websocket_endpoint_lock_manager_unittest.cc
diff --git a/net/socket/websocket_endpoint_lock_manager_unittest.cc b/net/socket/websocket_endpoint_lock_manager_unittest.cc
index e0f479997221bf3bde129b18e2df25b960e842ca..e7a3ea7082a299ba8f1dfa056fbbf7b77b647d4d 100644
--- a/net/socket/websocket_endpoint_lock_manager_unittest.cc
+++ b/net/socket/websocket_endpoint_lock_manager_unittest.cc
@@ -46,7 +46,7 @@ class FakeStreamSocket : public StreamSocket {
int GetLocalAddress(IPEndPoint* address) const override { return ERR_FAILED; }
- const BoundNetLog& NetLog() const override { return bound_net_log_; }
+ const NetLogWithSource& NetLog() const override { return net_log_; }
void SetSubresourceSpeculation() override { return; }
void SetOmniboxSpeculation() override { return; }
@@ -90,7 +90,7 @@ class FakeStreamSocket : public StreamSocket {
int SetSendBufferSize(int32_t size) override { return ERR_FAILED; }
private:
- BoundNetLog bound_net_log_;
+ NetLogWithSource net_log_;
DISALLOW_COPY_AND_ASSIGN(FakeStreamSocket);
};

Powered by Google App Engine
This is Rietveld 408576698