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

Unified Diff: third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp

Issue 2614833005: Migrate WTF::Vector::append() to ::push_back() [part 10 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/core/loader/WorkerThreadableLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp
index 294c55305525e24e73e3545af0dddb77dff77b4e..a72902bd042852bb5c1211c073b05fe75f8f0821 100644
--- a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.cpp
@@ -140,7 +140,7 @@ class WorkerThreadableLoader::WaitableEventWithTasks final
void append(TaskWithLocation task) {
DCHECK(isMainThread());
CHECK(!m_isSignalCalled);
- m_tasks.append(std::move(task));
+ m_tasks.push_back(std::move(task));
}
void setIsAborted() {
DCHECK(isMainThread());

Powered by Google App Engine
This is Rietveld 408576698