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

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

Issue 2749753002: Migrate WTF::Deque::removeFirst() to ::pop_front() (Closed)
Patch Set: 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 1e1fe382b61df6f93c46e6e41f1fff2f685742cc..e1861a1e5899f462c1e7233e0ae62fe8cd28c4b4 100644
--- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
+++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
@@ -217,7 +217,7 @@ void DataConsumerHandleTestUtil::ReplayingHandle::Context::consume(
bool fullyConsumed = (size + m_offset >= top().body().size());
if (fullyConsumed) {
m_offset = 0;
- m_commands.removeFirst();
+ m_commands.pop_front();
} else {
m_offset += size;
}

Powered by Google App Engine
This is Rietveld 408576698