diff options
Diffstat (limited to 'Source/WebCore/platform/audio/HRTFKernel.h')
-rw-r--r-- | Source/WebCore/platform/audio/HRTFKernel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/platform/audio/HRTFKernel.h b/Source/WebCore/platform/audio/HRTFKernel.h index c22698360..d998f50d0 100644 --- a/Source/WebCore/platform/audio/HRTFKernel.h +++ b/Source/WebCore/platform/audio/HRTFKernel.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of + * 3. Neither the name of Apple Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * @@ -57,7 +57,7 @@ public: static PassRefPtr<HRTFKernel> create(std::unique_ptr<FFTFrame> fftFrame, float frameDelay, float sampleRate) { - return adoptRef(new HRTFKernel(std::move(fftFrame), frameDelay, sampleRate)); + return adoptRef(new HRTFKernel(WTFMove(fftFrame), frameDelay, sampleRate)); } // Given two HRTFKernels, and an interpolation factor x: 0 -> 1, returns an interpolated HRTFKernel. @@ -79,7 +79,7 @@ private: HRTFKernel(AudioChannel*, size_t fftSize, float sampleRate); HRTFKernel(std::unique_ptr<FFTFrame> fftFrame, float frameDelay, float sampleRate) - : m_fftFrame(std::move(fftFrame)) + : m_fftFrame(WTFMove(fftFrame)) , m_frameDelay(frameDelay) , m_sampleRate(sampleRate) { |