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

Unified Diff: Source/platform/audio/mac/FFTFrameMac.cpp

Issue 906233002: Use nullptr instead of 0 in WebAudio (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 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 | « Source/platform/audio/ffmpeg/FFTFrameFFMPEG.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/mac/FFTFrameMac.cpp
diff --git a/Source/platform/audio/mac/FFTFrameMac.cpp b/Source/platform/audio/mac/FFTFrameMac.cpp
index cf53ddb1a6b093052b9549bfa92124a6795f026e..6f7c789f29951055bb772779ce1a54229c39426c 100644
--- a/Source/platform/audio/mac/FFTFrameMac.cpp
+++ b/Source/platform/audio/mac/FFTFrameMac.cpp
@@ -42,7 +42,7 @@ namespace blink {
const int kMaxFFTPow2Size = 24;
-FFTSetup* FFTFrame::fftSetups = 0;
+FFTSetup* FFTFrame::fftSetups = nullptr;
// Normal constructor: allocates for a given fftSize
FFTFrame::FFTFrame(unsigned fftSize)
@@ -150,7 +150,7 @@ void FFTFrame::cleanup()
}
free(fftSetups);
- fftSetups = 0;
+ fftSetups = nullptr;
}
} // namespace blink
« no previous file with comments | « Source/platform/audio/ffmpeg/FFTFrameFFMPEG.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698