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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioChannel.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/AudioChannel.h
diff --git a/third_party/WebKit/Source/platform/audio/AudioChannel.h b/third_party/WebKit/Source/platform/audio/AudioChannel.h
index 9d0c3ab9a14a3976d2fe6b6e50f9901e60224fa1..c0e177f35bd065ac0dfc63b256e8c3eebc4abc65 100644
--- a/third_party/WebKit/Source/platform/audio/AudioChannel.h
+++ b/third_party/WebKit/Source/platform/audio/AudioChannel.h
@@ -55,7 +55,7 @@ class PLATFORM_EXPORT AudioChannel {
// Manage storage for us.
explicit AudioChannel(size_t length)
: m_length(length), m_rawPointer(nullptr), m_silent(true) {
- m_memBuffer = wrapUnique(new AudioFloatArray(length));
+ m_memBuffer = WTF::wrapUnique(new AudioFloatArray(length));
}
// A "blank" audio channel -- must call set() before it's useful...
« no previous file with comments | « third_party/WebKit/Source/platform/audio/AudioBus.cpp ('k') | third_party/WebKit/Source/platform/audio/AudioDestination.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698