| Index: remoting/protocol/negotiating_authenticator_unittest.cc
|
| diff --git a/remoting/protocol/negotiating_authenticator_unittest.cc b/remoting/protocol/negotiating_authenticator_unittest.cc
|
| index 82e3fc49d800ecf6b54d8bb84a3e94728dddc47b..2c56882b5f547f62c4d9e8e633e6a94925506b5b 100644
|
| --- a/remoting/protocol/negotiating_authenticator_unittest.cc
|
| +++ b/remoting/protocol/negotiating_authenticator_unittest.cc
|
| @@ -70,7 +70,7 @@ class NegotiatingAuthenticatorTest : public AuthenticatorTestBase {
|
| methods.push_back(AuthenticationMethod::Spake2(
|
| AuthenticationMethod::NONE));
|
| }
|
| - bool pairing_expected = pairing_registry_.get() != NULL;
|
| + bool pairing_expected = pairing_registry_.get() != nullptr;
|
| FetchSecretCallback fetch_secret_callback =
|
| base::Bind(&NegotiatingAuthenticatorTest::FetchSecret,
|
| client_interactive_pin,
|
| @@ -122,8 +122,8 @@ class NegotiatingAuthenticatorTest : public AuthenticatorTestBase {
|
| host_auth_ = host_->CreateChannelAuthenticator();
|
| RunChannelAuth(false);
|
|
|
| - EXPECT_TRUE(client_socket_.get() != NULL);
|
| - EXPECT_TRUE(host_socket_.get() != NULL);
|
| + EXPECT_TRUE(client_socket_.get() != nullptr);
|
| + EXPECT_TRUE(host_socket_.get() != nullptr);
|
|
|
| StreamConnectionTester tester(host_socket_.get(), client_socket_.get(),
|
| kMessageSize, kMessages);
|
|
|