| 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 dbc46dcef324983a44a9a8b16fb14ad6d59b90ff..352a55967662f630032a0d73945acf959c2dcc48 100644
|
| --- a/extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| +++ b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
|
| @@ -83,12 +83,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;
|
| }
|
|
|