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

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

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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 f628baa0b878b32c2bdf2909eeb960ff15209e88..354e9ee02abad235a29f7f15956168aa59c39590 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
+ virtual 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