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

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

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 months 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/ScriptProcessorNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
index 316d05224f01b60ab90ad59ddaa6fd176b235338..19dc6b0ed0913cd2413807f3661c13597cc43128 100644
--- a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
@@ -103,8 +103,8 @@ void ScriptProcessorHandler::initialize() {
bufferSize(), sampleRate)
: 0;
- m_inputBuffers.append(inputBuffer);
- m_outputBuffers.append(outputBuffer);
+ m_inputBuffers.push_back(inputBuffer);
+ m_outputBuffers.push_back(outputBuffer);
}
AudioHandler::initialize();

Powered by Google App Engine
This is Rietveld 408576698