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

Unified Diff: third_party/WebKit/Source/platform/audio/HRTFKernel.h

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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
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));
}
« no previous file with comments | « third_party/WebKit/Source/platform/audio/HRTFElevation.cpp ('k') | third_party/WebKit/Source/platform/audio/HRTFKernel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698