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

Unified Diff: webrtc/pc/channelmanager_unittest.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/pc/channelmanager_unittest.cc
diff --git a/webrtc/pc/channelmanager_unittest.cc b/webrtc/pc/channelmanager_unittest.cc
index 74c359012c188a2405b1154c2700e44180ce84a3..967463bf37b5f691c6adf2a3e84766c9264e9906 100644
--- a/webrtc/pc/channelmanager_unittest.cc
+++ b/webrtc/pc/channelmanager_unittest.cc
@@ -54,9 +54,9 @@ class ChannelManagerTest : public testing::Test {
virtual void TearDown() {
delete transport_controller_;
delete cm_;
- cm_ = NULL;
- fdme_ = NULL;
- fme_ = NULL;
+ cm_ = nullptr;
+ fdme_ = nullptr;
+ fme_ = nullptr;
}
webrtc::RtcEventLogNullImpl event_log_;

Powered by Google App Engine
This is Rietveld 408576698