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

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase 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/workers/InProcessWorkerMessagingProxy.cpp
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
index edf0372c9fc08224d6a4d0ca7074cd8a39e896e2..6026c0979c57bfb4c3b9d8b5bfa5b925539ab79b 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerMessagingProxy.cpp
@@ -166,7 +166,7 @@ void InProcessWorkerMessagingProxy::postMessageToWorkerGlobalScope(
++m_unconfirmedMessageCount;
workerThread()->postTask(BLINK_FROM_HERE, std::move(task));
} else {
- m_queuedEarlyTasks.append(std::move(task));
+ m_queuedEarlyTasks.push_back(std::move(task));
}
}

Powered by Google App Engine
This is Rietveld 408576698