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

Unified Diff: webrtc/base/event_tracer_unittest.cc

Issue 2718663005: Replace NULL with nullptr or null in webrtc/base/. (Closed)
Patch Set: Fixing Windows and formatting issues. 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
« no previous file with comments | « webrtc/base/event.cc ('k') | webrtc/base/fileutils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/event_tracer_unittest.cc
diff --git a/webrtc/base/event_tracer_unittest.cc b/webrtc/base/event_tracer_unittest.cc
index ec474bdd72d133031c3cbae4373ae87694864fa2..a16c0ef692dc7ffc094a2b0e3c6e97d44411b121 100644
--- a/webrtc/base/event_tracer_unittest.cc
+++ b/webrtc/base/event_tracer_unittest.cc
@@ -32,7 +32,7 @@ class TestStatistics {
int Count() const { return events_logged_; }
static TestStatistics* Get() {
- static TestStatistics* test_stats = NULL;
+ static TestStatistics* test_stats = nullptr;
if (!test_stats)
test_stats = new TestStatistics();
return test_stats;
« no previous file with comments | « webrtc/base/event.cc ('k') | webrtc/base/fileutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698