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

Unified Diff: Source/platform/audio/AudioDSPKernel.h

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/AudioChannel.h ('k') | Source/platform/audio/AudioDestination.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/AudioDSPKernel.h
diff --git a/Source/platform/audio/AudioDSPKernel.h b/Source/platform/audio/AudioDSPKernel.h
index f2face91f84afc2202612067d5f517e831cc969d..e4f4fab2224744759e9b1ed8e515cf8b443d980a 100644
--- a/Source/platform/audio/AudioDSPKernel.h
+++ b/Source/platform/audio/AudioDSPKernel.h
@@ -46,7 +46,7 @@ public:
}
AudioDSPKernel(float sampleRate)
- : m_kernelProcessor(0)
+ : m_kernelProcessor(nullptr)
, m_sampleRate(sampleRate)
{
}
« no previous file with comments | « Source/platform/audio/AudioChannel.h ('k') | Source/platform/audio/AudioDestination.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698