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

Unified Diff: webrtc/system_wrappers/source/logcat_trace_context.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. Created 3 years, 10 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
Index: webrtc/system_wrappers/source/logcat_trace_context.cc
diff --git a/webrtc/system_wrappers/source/logcat_trace_context.cc b/webrtc/system_wrappers/source/logcat_trace_context.cc
index cc2e45b28ec0df614efd233813416f2ef9e0e65a..e75b1ba3b299ca1604db6e886bb1218f8f35eba4 100644
--- a/webrtc/system_wrappers/source/logcat_trace_context.cc
+++ b/webrtc/system_wrappers/source/logcat_trace_context.cc
@@ -48,7 +48,7 @@ LogcatTraceContext::LogcatTraceContext() {
}
LogcatTraceContext::~LogcatTraceContext() {
- if (webrtc::Trace::SetTraceCallback(NULL) != 0)
+ if (webrtc::Trace::SetTraceCallback(nullptr) != 0)
assert(false);
webrtc::Trace::ReturnTrace();
}

Powered by Google App Engine
This is Rietveld 408576698