Index: third_party/WebKit/Source/platform/audio/HRTFKernel.h |
diff --git a/third_party/WebKit/Source/platform/audio/HRTFKernel.h b/third_party/WebKit/Source/platform/audio/HRTFKernel.h |
index 54343e9451f26c94120663f422ae33042b911bd6..e22482f3edda7fb84ba001d99e8652660895f241 100644 |
--- a/third_party/WebKit/Source/platform/audio/HRTFKernel.h |
+++ b/third_party/WebKit/Source/platform/audio/HRTFKernel.h |
@@ -59,13 +59,13 @@ class PLATFORM_EXPORT HRTFKernel { |
static std::unique_ptr<HRTFKernel> create(AudioChannel* channel, |
size_t fftSize, |
float sampleRate) { |
- return wrapUnique(new HRTFKernel(channel, fftSize, sampleRate)); |
+ return WTF::wrapUnique(new HRTFKernel(channel, fftSize, sampleRate)); |
} |
static std::unique_ptr<HRTFKernel> create(std::unique_ptr<FFTFrame> fftFrame, |
float frameDelay, |
float sampleRate) { |
- return wrapUnique( |
+ return WTF::wrapUnique( |
new HRTFKernel(std::move(fftFrame), frameDelay, sampleRate)); |
} |