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

Unified Diff: third_party/WebKit/Source/modules/mediasource/SourceBufferList.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/mediasource/SourceBufferList.cpp
diff --git a/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp b/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
index 1394865a6a4fbaa7402bb4b0380d6d03e71b4054..535b6941c6680754681e5cfba42feb3f667d0e31 100644
--- a/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
+++ b/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
@@ -44,7 +44,7 @@ SourceBufferList::SourceBufferList(ExecutionContext* context,
SourceBufferList::~SourceBufferList() {}
void SourceBufferList::add(SourceBuffer* buffer) {
- m_list.append(buffer);
+ m_list.push_back(buffer);
scheduleEvent(EventTypeNames::addsourcebuffer);
}

Powered by Google App Engine
This is Rietveld 408576698