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

Unified Diff: jingle/glue/fake_ssl_client_socket_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: jingle/glue/fake_ssl_client_socket_unittest.cc
diff --git a/jingle/glue/fake_ssl_client_socket_unittest.cc b/jingle/glue/fake_ssl_client_socket_unittest.cc
index 5a03478ad8c158129d0970f6fcb457d719429f2a..b8955f0e8cebb5a03d0fe6aee813ec9c7b7568a1 100644
--- a/jingle/glue/fake_ssl_client_socket_unittest.cc
+++ b/jingle/glue/fake_ssl_client_socket_unittest.cc
@@ -63,7 +63,7 @@ class MockClientSocket : public net::StreamSocket {
MOCK_CONST_METHOD0(IsConnectedAndIdle, bool());
MOCK_CONST_METHOD1(GetPeerAddress, int(net::IPEndPoint*));
MOCK_CONST_METHOD1(GetLocalAddress, int(net::IPEndPoint*));
- MOCK_CONST_METHOD0(NetLog, const net::BoundNetLog&());
+ MOCK_CONST_METHOD0(NetLog, const net::NetLogWithSource&());
MOCK_METHOD0(SetSubresourceSpeculation, void());
MOCK_METHOD0(SetOmniboxSpeculation, void());
MOCK_CONST_METHOD0(WasEverUsed, bool());
@@ -283,7 +283,7 @@ TEST_F(FakeSSLClientSocketTest, PassThroughMethods) {
const int kSendBufferSize = 20;
net::IPEndPoint ip_endpoint(net::IPAddress::IPv4AllZeros(), 80);
const int kPeerAddress = 30;
- net::BoundNetLog net_log;
+ net::NetLogWithSource net_log;
EXPECT_CALL(*mock_client_socket, SetReceiveBufferSize(kReceiveBufferSize));
EXPECT_CALL(*mock_client_socket, SetSendBufferSize(kSendBufferSize));
EXPECT_CALL(*mock_client_socket, GetPeerAddress(&ip_endpoint)).

Powered by Google App Engine
This is Rietveld 408576698