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

Unified Diff: Source/platform/audio/MultiChannelResampler.cpp

Issue 631803002: Replacing the OVERRIDE with override and FINAL with final (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase issue Created 6 years, 2 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/HRTFPanner.h ('k') | Source/platform/audio/SincResampler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/MultiChannelResampler.cpp
diff --git a/Source/platform/audio/MultiChannelResampler.cpp b/Source/platform/audio/MultiChannelResampler.cpp
index 354e9ee02abad235a29f7f15956168aa59c39590..683674ec679c8dc0a727ec93a240e48ac7eb5bf0 100644
--- a/Source/platform/audio/MultiChannelResampler.cpp
+++ b/Source/platform/audio/MultiChannelResampler.cpp
@@ -41,7 +41,7 @@ namespace {
// ChannelProvider provides a single channel of audio data (one channel at a time) for each channel
// of data provided to us in a multi-channel provider.
-class ChannelProvider FINAL : public AudioSourceProvider {
+class ChannelProvider final : public AudioSourceProvider {
public:
ChannelProvider(AudioSourceProvider* multiChannelProvider, unsigned numberOfChannels)
: m_multiChannelProvider(multiChannelProvider)
« no previous file with comments | « Source/platform/audio/HRTFPanner.h ('k') | Source/platform/audio/SincResampler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698