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

Unified Diff: remoting/client/server_log_entry_client.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/client/plugin/pepper_packet_socket_factory.cc ('k') | remoting/host/audio_capturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/server_log_entry_client.cc
diff --git a/remoting/client/server_log_entry_client.cc b/remoting/client/server_log_entry_client.cc
index 981d108601851c03eb27e7b41e6fec2b6860a627..d8ff47a2dae51d34136574fdbd3784a0555b084f 100644
--- a/remoting/client/server_log_entry_client.cc
+++ b/remoting/client/server_log_entry_client.cc
@@ -56,7 +56,7 @@ const char* GetValueSessionState(ConnectionToHost::State state) {
return kValueSessionStateClosed;
default:
NOTREACHED();
- return NULL;
+ return nullptr;
}
}
@@ -86,7 +86,7 @@ const char* GetValueError(ErrorCode error) {
return "unknown-error";
default:
NOTREACHED();
- return NULL;
+ return nullptr;
}
}
« no previous file with comments | « remoting/client/plugin/pepper_packet_socket_factory.cc ('k') | remoting/host/audio_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698