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

Unified Diff: remoting/host/setup/start_host.cc

Issue 810133003: replace NULL->nullptr in src/remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « remoting/host/setup/service_client.cc ('k') | remoting/host/setup/test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « remoting/host/setup/service_client.cc ('k') | remoting/host/setup/test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698