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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 683674ec679c8dc0a727ec93a240e48ac7eb5bf0..b87ac12f0e136584f53afcd789570ce911be98d1 100644
--- a/Source/platform/audio/MultiChannelResampler.cpp
+++ b/Source/platform/audio/MultiChannelResampler.cpp
@@ -53,7 +53,7 @@ public:
// provideInput() will be called once for each channel, starting with the first channel.
// Each time it's called, it will provide the next channel of data.
- virtual void provideInput(AudioBus* bus, size_t framesToProcess) override
+ void provideInput(AudioBus* bus, size_t framesToProcess) override
{
bool isBusGood = bus && bus->numberOfChannels() == 1;
ASSERT(isBusGood);
« 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