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

Unified Diff: webrtc/pc/test/fakeaudiocapturemodule_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/test/fakeaudiocapturemodule_unittest.cc
diff --git a/webrtc/pc/test/fakeaudiocapturemodule_unittest.cc b/webrtc/pc/test/fakeaudiocapturemodule_unittest.cc
index aa40af79d0d750d900a78eff48ca899c54785c93..b7d0054eedaf2740bb4472bde9f3dc35091eb562 100644
--- a/webrtc/pc/test/fakeaudiocapturemodule_unittest.cc
+++ b/webrtc/pc/test/fakeaudiocapturemodule_unittest.cc
@@ -33,7 +33,7 @@ class FakeAdmTest : public testing::Test,
void SetUp() override {
fake_audio_capture_module_ = FakeAudioCaptureModule::Create();
- EXPECT_TRUE(fake_audio_capture_module_.get() != NULL);
+ EXPECT_TRUE(fake_audio_capture_module_.get() != nullptr);
}
// Callbacks inherited from webrtc::AudioTransport.

Powered by Google App Engine
This is Rietveld 408576698