| Index: remoting/host/setup/start_host.cc
|
| diff --git a/remoting/host/setup/start_host.cc b/remoting/host/setup/start_host.cc
|
| index a207f3514818b421005ef0a2c760c69255e010c2..57359b3ea834ffdec4f9268ef4bcaeed43f7be2d 100644
|
| --- a/remoting/host/setup/start_host.cc
|
| +++ b/remoting/host/setup/start_host.cc
|
| @@ -29,7 +29,7 @@ using remoting::HostStarter;
|
| bool g_started = false;
|
|
|
| // The main message loop.
|
| -base::MessageLoop* g_message_loop = NULL;
|
| +base::MessageLoop* g_message_loop = nullptr;
|
|
|
| // Lets us hide the PIN that a user types.
|
| void SetEcho(bool echo) {
|
| @@ -185,12 +185,12 @@ int main(int argc, char** argv) {
|
| base::RunLoop run_loop;
|
| run_loop.Run();
|
|
|
| - g_message_loop = NULL;
|
| + g_message_loop = nullptr;
|
|
|
| // Destroy the HostStarter and URLRequestContextGetter before stopping the
|
| // IO thread.
|
| host_starter.reset();
|
| - url_request_context_getter = NULL;
|
| + url_request_context_getter = nullptr;
|
|
|
| io_thread.Stop();
|
|
|
|
|