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

Unified Diff: third_party/WebKit/Source/platform/audio/Panner.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/platform/audio/Panner.cpp
diff --git a/third_party/WebKit/Source/platform/audio/Panner.cpp b/third_party/WebKit/Source/platform/audio/Panner.cpp
index 1d002ea8973a77d669426e2705bd8790b2357e37..42060051475bca09b856c54b5fd831f3e525ff6b 100644
--- a/third_party/WebKit/Source/platform/audio/Panner.cpp
+++ b/third_party/WebKit/Source/platform/audio/Panner.cpp
@@ -39,10 +39,10 @@ std::unique_ptr<Panner> Panner::create(PanningModel model,
HRTFDatabaseLoader* databaseLoader) {
switch (model) {
case PanningModelEqualPower:
- return makeUnique<EqualPowerPanner>(sampleRate);
+ return WTF::makeUnique<EqualPowerPanner>(sampleRate);
case PanningModelHRTF:
- return makeUnique<HRTFPanner>(sampleRate, databaseLoader);
+ return WTF::makeUnique<HRTFPanner>(sampleRate, databaseLoader);
default:
ASSERT_NOT_REACHED();

Powered by Google App Engine
This is Rietveld 408576698