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

Unified Diff: third_party/WebKit/Source/modules/webaudio/DelayProcessor.cpp

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/modules/webaudio/DelayProcessor.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/DelayProcessor.cpp b/third_party/WebKit/Source/modules/webaudio/DelayProcessor.cpp
index c2ac1f1be44e79ceb8f7438505b032d41671b31d..56c2ae541cb3b7358f576a81066bcbecef60d192 100644
--- a/third_party/WebKit/Source/modules/webaudio/DelayProcessor.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DelayProcessor.cpp
@@ -44,7 +44,7 @@ DelayProcessor::~DelayProcessor() {
}
std::unique_ptr<AudioDSPKernel> DelayProcessor::createKernel() {
- return makeUnique<DelayDSPKernel>(this);
+ return WTF::makeUnique<DelayDSPKernel>(this);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698