| Index: extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| diff --git a/extensions/browser/api/cast_channel/cast_socket_unittest.cc b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| index f79ce16c1796a318329963b6fb5345440045ac1b..6d4eca5c6b165d14dd26f512edbdb7658caa7221 100644
|
| --- a/extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| +++ b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| @@ -84,12 +84,18 @@ CastMessage CreateTestMessage() {
|
| class MockTCPSocket : public net::TCPClientSocket {
|
| public:
|
| explicit MockTCPSocket(const net::MockConnect& connect_data)
|
| - : TCPClientSocket(net::AddressList(), nullptr, net::NetLog::Source()),
|
| + : TCPClientSocket(net::AddressList(),
|
| + nullptr,
|
| + nullptr,
|
| + net::NetLog::Source()),
|
| connect_data_(connect_data),
|
| do_nothing_(false) {}
|
|
|
| explicit MockTCPSocket(bool do_nothing)
|
| - : TCPClientSocket(net::AddressList(), nullptr, net::NetLog::Source()) {
|
| + : TCPClientSocket(net::AddressList(),
|
| + nullptr,
|
| + nullptr,
|
| + net::NetLog::Source()) {
|
| CHECK(do_nothing);
|
| do_nothing_ = do_nothing;
|
| }
|
|
|