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

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

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/EqualPowerPanner.h ('k') | Source/platform/audio/MultiChannelResampler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/HRTFPanner.h
diff --git a/Source/platform/audio/HRTFPanner.h b/Source/platform/audio/HRTFPanner.h
index 4c5bf5482a5223f9975291a0ad06143c1976e717..e643a83f2d732a9f74a30edf8f441593230a0e7d 100644
--- a/Source/platform/audio/HRTFPanner.h
+++ b/Source/platform/audio/HRTFPanner.h
@@ -38,18 +38,18 @@ public:
virtual ~HRTFPanner();
// Panner
- virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) OVERRIDE;
- virtual void reset() OVERRIDE;
+ virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) override;
+ virtual void reset() override;
size_t fftSize() const { return fftSizeForSampleRate(m_sampleRate); }
static size_t fftSizeForSampleRate(float sampleRate);
float sampleRate() const { return m_sampleRate; }
- virtual double tailTime() const OVERRIDE;
- virtual double latencyTime() const OVERRIDE;
+ virtual double tailTime() const override;
+ virtual double latencyTime() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
// Given an azimuth angle in the range -180 -> +180, returns the corresponding azimuth index for the database,
« no previous file with comments | « Source/platform/audio/EqualPowerPanner.h ('k') | Source/platform/audio/MultiChannelResampler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698