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

Unified Diff: Source/platform/audio/AudioDelayDSPKernel.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/AudioDSPKernelProcessor.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/AudioDelayDSPKernel.h
diff --git a/Source/platform/audio/AudioDelayDSPKernel.h b/Source/platform/audio/AudioDelayDSPKernel.h
index a4b8dd20e10ec5e8cee97e36be5e0101f1573b3c..386c125a069e4569b71a95b8b4062089d9734fcc 100644
--- a/Source/platform/audio/AudioDelayDSPKernel.h
+++ b/Source/platform/audio/AudioDelayDSPKernel.h
@@ -34,15 +34,15 @@ class PLATFORM_EXPORT AudioDelayDSPKernel : public AudioDSPKernel {
public:
AudioDelayDSPKernel(double maxDelayTime, float sampleRate);
- virtual void process(const float* source, float* destination, size_t framesToProcess) OVERRIDE;
- virtual void reset() OVERRIDE;
+ virtual void process(const float* source, float* destination, size_t framesToProcess) override;
+ virtual void reset() override;
double maxDelayTime() const { return m_maxDelayTime; }
void setDelayFrames(double numberOfFrames) { m_desiredDelayFrames = numberOfFrames; }
- virtual double tailTime() const OVERRIDE;
- virtual double latencyTime() const OVERRIDE;
+ virtual double tailTime() const override;
+ virtual double latencyTime() const override;
protected:
AudioDelayDSPKernel(AudioDSPKernelProcessor*, size_t processingSizeInFrames);
« no previous file with comments | « Source/platform/audio/AudioDSPKernelProcessor.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698