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

Unified Diff: third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 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/fetch/DataConsumerHandleTestUtil.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
index a09bdae8e62f58e96694159e7c6c72a46ef7f1ab..1e1fe382b61df6f93c46e6e41f1fff2f685742cc 100644
--- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
+++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
@@ -120,7 +120,7 @@ class DataConsumerHandleTestUtil::ReplayingHandle::ReaderImpl final
void DataConsumerHandleTestUtil::ReplayingHandle::Context::add(
const Command& command) {
MutexLocker locker(m_mutex);
- m_commands.append(command);
+ m_commands.push_back(command);
}
void DataConsumerHandleTestUtil::ReplayingHandle::Context::attachReader(

Powered by Google App Engine
This is Rietveld 408576698