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

Unified Diff: remoting/signaling/server_log_entry.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/signaling/log_to_server.cc ('k') | remoting/signaling/server_log_entry_unittest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/server_log_entry.cc
diff --git a/remoting/signaling/server_log_entry.cc b/remoting/signaling/server_log_entry.cc
index 684c74e6f8c6014c38fa232b0fa0d8319b663a10..d91a32a970d3d9e8b0164f4dd809faefae9ce7c6 100644
--- a/remoting/signaling/server_log_entry.cc
+++ b/remoting/signaling/server_log_entry.cc
@@ -47,7 +47,7 @@ void ServerLogEntry::AddCpuField() {
}
void ServerLogEntry::AddModeField(ServerLogEntry::Mode mode) {
- const char* mode_value = NULL;
+ const char* mode_value = nullptr;
switch (mode) {
case IT2ME:
mode_value = kValueModeIt2Me;
« no previous file with comments | « remoting/signaling/log_to_server.cc ('k') | remoting/signaling/server_log_entry_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698