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

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

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/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 6bc4ea714a6ae0cdbc8e4baa26d4dc5e60c8ba3e..84f7585cbc93358abcf27283ce7a7d28f3f9e8ee 100644
--- a/Source/platform/audio/HRTFPanner.h
+++ b/Source/platform/audio/HRTFPanner.h
@@ -35,19 +35,19 @@ namespace blink {
class PLATFORM_EXPORT HRTFPanner final : public Panner {
public:
HRTFPanner(float sampleRate, HRTFDatabaseLoader*);
- virtual ~HRTFPanner();
+ ~HRTFPanner() override;
// Panner
- virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) override;
- virtual void reset() override;
+ void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) override;
+ 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;
+ double tailTime() const override;
+ double latencyTime() const 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